Skip to content

Commit 376ff96

Browse files
authored
Merge pull request #821 from RocketPy-Team/rel/v1.10.0
REL: update to v1.10.0
2 parents 3479bda + 809b7e0 commit 376ff96

File tree

5 files changed

+19
-5
lines changed

5 files changed

+19
-5
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3030
<!-- These are the changes that were not released yet, please add them correctly.
3131
Attention: The newest changes should be on top -->
3232

33+
### Added
34+
35+
36+
### Changed
37+
38+
39+
### Fixed
40+
41+
42+
## [v1.10.0] - 2025-05-16
43+
3344
### Added
3445
- ENH: Support for ND arithmetic in Function class. [#810] (https://github.com/RocketPy-Team/RocketPy/pull/810)
3546
- ENH: allow users to provide custom samplers [#803](https://github.com/RocketPy-Team/RocketPy/pull/803)
@@ -50,7 +61,7 @@ Attention: The newest changes should be on top -->
5061
- BUG: Wrong Phi Initialization For nose_to_tail Rockets [#809](https://github.com/RocketPy-Team/RocketPy/pull/809)
5162
- BUG: Fix StochasticFlight time_overshoot None bug [#805](https://github.com/RocketPy-Team/RocketPy/pull/805)
5263

53-
## v1.9.0 - 2025-03-24
64+
## [v1.9.0] - 2025-03-24
5465

5566
### Added
5667

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.9.0"
30+
release = "1.10.0"
3131

3232

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

docs/user/installation.rst

Lines changed: 1 addition & 1 deletion
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.9.0
22+
pip install rocketpy==1.10.0
2323
2424
2525
Optional Installation Method: ``conda``

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "rocketpy"
3-
version = "1.9.0"
3+
version = "1.10.0"
44
description="Advanced 6-DOF trajectory simulation for High-Power Rocketry."
55
dynamic = ["dependencies"]
66
readme = "README.md"

rocketpy/utilities.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
import matplotlib.pyplot as plt
1212
import numpy as np
13+
from packaging import version as packaging_version
1314
from scipy.integrate import solve_ivp
1415

1516
from ._encoders import RocketPyDecoder, RocketPyEncoder
@@ -750,7 +751,9 @@ def load_from_rpy(filename: str, resimulate=False):
750751

751752
with open(filename, "r") as f:
752753
data = json.load(f)
753-
if data["version"] > version("rocketpy"):
754+
if packaging_version.parse(data["version"]) > packaging_version.parse(
755+
version("rocketpy")
756+
):
754757
warnings.warn(
755758
"The file was saved in an updated version of",
756759
f"RocketPy (v{data['version']}), the current",

0 commit comments

Comments
 (0)