From 0116b0d90c7ace54e080714b0fa1be23a952673b Mon Sep 17 00:00:00 2001 From: Gui-FernandesBR Date: Fri, 8 Nov 2024 17:29:49 -0300 Subject: [PATCH] REL: rocketpy v1.6.2 --- CHANGELOG.md | 16 +++++++++++++++- docs/conf.py | 2 +- docs/user/installation.rst | 6 +++--- pyproject.toml | 20 ++++++++++---------- 4 files changed, 29 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc4f552b1..8ccef502b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,11 +32,25 @@ Attention: The newest changes should be on top --> ### Added -- ENH: add structural to total mass ratio for motor and rocket [#713](https://github.com/RocketPy-Team/RocketPy/pull/713) +- ### Changed +- + +### Fixed + +- + +## [v1.6.2] - 2024-11-08 + +### Added + +- ENH: add structural to total mass ratio for motor and rocket [#713](https://github.com/RocketPy-Team/RocketPy/pull/713) + +### Changed +- REL: bumps up rocketpy version to v1.6.2 [#724](https://github.com/RocketPy-Team/RocketPy/pull/724) ### Fixed diff --git a/docs/conf.py b/docs/conf.py index fbe3f9d69..e834d180e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -27,7 +27,7 @@ author = "RocketPy Team" # The full version, including alpha/beta/rc tags -release = "1.6.1" +release = "1.6.2" # -- General configuration --------------------------------------------------- diff --git a/docs/user/installation.rst b/docs/user/installation.rst index a0a00837c..b8f0d73b7 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.6.1 + pip install rocketpy==1.6.2 Optional Installation Method: ``conda`` @@ -114,7 +114,7 @@ The packages needed can be installed via ``pip`` by running the following lines .. code-block:: shell - pip install "numpy>=1.13" + pip install "numpy>=1.13" pip install "scipy>=1.0" pip install "matplotlib>=3.0" pip install "netCDF4>=1.6.4" @@ -158,7 +158,7 @@ Alternatively, you can instal all extra packages by running the following line i .. code-block:: shell pip install rocketpy[all] - + Useful Packages ^^^^^^^^^^^^^^^ diff --git a/pyproject.toml b/pyproject.toml index 6ba78a667..244de58d5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "rocketpy" -version = "1.6.1" +version = "1.6.2" description="Advanced 6-DOF trajectory simulation for High-Power Rocketry." dynamic = ["dependencies"] readme = "README.md" @@ -30,8 +30,8 @@ packages = { find = { where = ["."], include = ["rocketpy*"] } } dependencies = { file = ["requirements.txt"] } [project.optional-dependencies] -tests = [ - "pytest", +tests = [ + "pytest", "pytest-coverage", "black[jupyter]", "flake8-black", @@ -42,12 +42,12 @@ tests = [ "isort" ] -env-analysis = [ - "windrose>=1.6.8", - "timezonefinder", - "jsonpickle", - "ipython", - "ipywidgets>=7.6.3" +env-analysis = [ + "windrose>=1.6.8", + "timezonefinder", + "jsonpickle", + "ipython", + "ipywidgets>=7.6.3" ] monte-carlo = [ @@ -59,7 +59,7 @@ monte-carlo = [ all = ["rocketpy[env-analysis]", "rocketpy[monte-carlo]"] [tool.black] -line-length = 88 +line-length = 88 include = '\.py$|\.ipynb$' skip-string-normalization = true