diff --git a/CHANGELOG.md b/CHANGELOG.md index 144a2f1a1..7090973ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,6 +32,15 @@ Attention: The newest changes should be on top --> ### Added +### Changed + +### Fixed + + +## [v1.11.0] - 2025-11-01 + +### Added + - ENH: Tank Fluids with Variable Density from Temperature and Pressure [#852](https://github.com/RocketPy-Team/RocketPy/pull/852) - ENH: Controller (AirBrakes) and Sensors Encoding [#849](https://github.com/RocketPy-Team/RocketPy/pull/849) - EHN: Addition of ensemble variable to ECMWF dictionaries [#842](https://github.com/RocketPy-Team/RocketPy/pull/842) @@ -44,6 +53,7 @@ Attention: The newest changes should be on top --> ### Changed +- REL: bumps up rocketpy version to 1.11.0 [#868](https://github.com/RocketPy-Team/RocketPy/pull/868) - MNT: allow for exporting of non apogee flights. [#863](https://github.com/RocketPy-Team/RocketPy/pull/863) - TST: remove remaining files after test session. [#862](https://github.com/RocketPy-Team/RocketPy/pull/862) - MNT: bumps min python version to 3.10 [#857](https://github.com/RocketPy-Team/RocketPy/pull/857) diff --git a/docs/conf.py b/docs/conf.py index c76d990da..e3444233d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,12 +22,12 @@ # -- Project information ----------------------------------------------------- project = "RocketPy" -copyright = "2024, RocketPy Team" +copyright = "2025, RocketPy Team" author = "RocketPy Team" # The full version, including alpha/beta/rc tags -release = "1.10.0" +release = "1.11.0" # -- General configuration --------------------------------------------------- diff --git a/docs/user/installation.rst b/docs/user/installation.rst index dcc188d17..72ba1f42d 100644 --- a/docs/user/installation.rst +++ b/docs/user/installation.rst @@ -19,7 +19,7 @@ If you want to choose a specific version to guarantee compatibility, you may ins .. code-block:: shell - pip install rocketpy==1.10.0 + pip install rocketpy==1.11.0 Optional Installation Method: ``conda`` diff --git a/pyproject.toml b/pyproject.toml index 23d6b3998..306299b2b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "rocketpy" -version = "1.10.0" +version = "1.11.0" description="Advanced 6-DOF trajectory simulation for High-Power Rocketry." dynamic = ["dependencies"] readme = "README.md"