Skip to content

Commit 04c59ee

Browse files
Merge pull request #724 from RocketPy-Team/rel/v1.6.2
REL: rocketpy v1.6.2
2 parents f10f406 + 0116b0d commit 04c59ee

File tree

4 files changed

+29
-15
lines changed

4 files changed

+29
-15
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,25 @@ Attention: The newest changes should be on top -->
3232

3333
### Added
3434

35-
- ENH: add structural to total mass ratio for motor and rocket [#713](https://github.com/RocketPy-Team/RocketPy/pull/713)
35+
-
3636

3737
### Changed
3838

39+
-
40+
41+
### Fixed
42+
43+
-
44+
45+
## [v1.6.2] - 2024-11-08
46+
47+
### Added
48+
49+
- ENH: add structural to total mass ratio for motor and rocket [#713](https://github.com/RocketPy-Team/RocketPy/pull/713)
50+
51+
### Changed
3952

53+
- REL: bumps up rocketpy version to v1.6.2 [#724](https://github.com/RocketPy-Team/RocketPy/pull/724)
4054

4155
### Fixed
4256

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
author = "RocketPy Team"
2828

2929
# The full version, including alpha/beta/rc tags
30-
release = "1.6.1"
30+
release = "1.6.2"
3131

3232

3333
# -- General configuration ---------------------------------------------------

docs/user/installation.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If you want to choose a specific version to guarantee compatibility, you may ins
1919

2020
.. code-block:: shell
2121
22-
pip install rocketpy==1.6.1
22+
pip install rocketpy==1.6.2
2323
2424
2525
Optional Installation Method: ``conda``
@@ -114,7 +114,7 @@ The packages needed can be installed via ``pip`` by running the following lines
114114

115115
.. code-block:: shell
116116
117-
pip install "numpy>=1.13"
117+
pip install "numpy>=1.13"
118118
pip install "scipy>=1.0"
119119
pip install "matplotlib>=3.0"
120120
pip install "netCDF4>=1.6.4"
@@ -158,7 +158,7 @@ Alternatively, you can instal all extra packages by running the following line i
158158
.. code-block:: shell
159159
160160
pip install rocketpy[all]
161-
161+
162162
163163
Useful Packages
164164
^^^^^^^^^^^^^^^

pyproject.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "rocketpy"
3-
version = "1.6.1"
3+
version = "1.6.2"
44
description="Advanced 6-DOF trajectory simulation for High-Power Rocketry."
55
dynamic = ["dependencies"]
66
readme = "README.md"
@@ -30,8 +30,8 @@ packages = { find = { where = ["."], include = ["rocketpy*"] } }
3030
dependencies = { file = ["requirements.txt"] }
3131

3232
[project.optional-dependencies]
33-
tests = [
34-
"pytest",
33+
tests = [
34+
"pytest",
3535
"pytest-coverage",
3636
"black[jupyter]",
3737
"flake8-black",
@@ -42,12 +42,12 @@ tests = [
4242
"isort"
4343
]
4444

45-
env-analysis = [
46-
"windrose>=1.6.8",
47-
"timezonefinder",
48-
"jsonpickle",
49-
"ipython",
50-
"ipywidgets>=7.6.3"
45+
env-analysis = [
46+
"windrose>=1.6.8",
47+
"timezonefinder",
48+
"jsonpickle",
49+
"ipython",
50+
"ipywidgets>=7.6.3"
5151
]
5252

5353
monte-carlo = [
@@ -59,7 +59,7 @@ monte-carlo = [
5959
all = ["rocketpy[env-analysis]", "rocketpy[monte-carlo]"]
6060

6161
[tool.black]
62-
line-length = 88
62+
line-length = 88
6363
include = '\.py$|\.ipynb$'
6464
skip-string-normalization = true
6565

0 commit comments

Comments
 (0)