diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ef7658a1..4284ef644 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,6 +40,14 @@ straightforward as possible. ### Fixed +- + +## [v1.1.5] - 2024-01-21 + +You can install this version by running `pip install rocketpy==1.1.5` + +### Fixed + - BUG: Parachute Pressures not being Set before All Info. [#534](https://github.com/RocketPy-Team/RocketPy/pull/534) - BUG: Invalid Arguments on Two Dimensional Discretize. [#521](https://github.com/RocketPy-Team/RocketPy/pull/521) diff --git a/docs/conf.py b/docs/conf.py index 8881e55db..43dbd2d5c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,7 +24,7 @@ author = "RocketPy Team" # The full version, including alpha/beta/rc tags -release = "1.1.4" +release = "1.1.5" # -- General configuration --------------------------------------------------- diff --git a/docs/user/installation.rst b/docs/user/installation.rst index 6884720d4..0822bde7d 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.1.4 + pip install rocketpy==1.1.5 Optional Installation Method: ``conda`` diff --git a/setup.py b/setup.py index a2a219faa..326f276ec 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ setuptools.setup( name="rocketpy", - version="1.1.4", + version="1.1.5", install_requires=necessary_require, extras_require={ "env_analysis": env_analysis_require,