Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- These are the changes that were not released yet, please add them correctly.
Attention: The newest changes should be on top -->

### Added


### Changed


### Fixed


## [v1.10.0] - 2025-05-16

### Added
- ENH: Support for ND arithmetic in Function class. [#810] (https://github.com/RocketPy-Team/RocketPy/pull/810)
- ENH: allow users to provide custom samplers [#803](https://github.com/RocketPy-Team/RocketPy/pull/803)
Expand All @@ -50,7 +61,7 @@ Attention: The newest changes should be on top -->
- BUG: Wrong Phi Initialization For nose_to_tail Rockets [#809](https://github.com/RocketPy-Team/RocketPy/pull/809)
- BUG: Fix StochasticFlight time_overshoot None bug [#805](https://github.com/RocketPy-Team/RocketPy/pull/805)

## v1.9.0 - 2025-03-24
## [v1.9.0] - 2025-03-24

### Added

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
author = "RocketPy Team"

# The full version, including alpha/beta/rc tags
release = "1.9.0"
release = "1.10.0"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/user/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0
pip install rocketpy==1.10.0


Optional Installation Method: ``conda``
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "rocketpy"
version = "1.9.0"
version = "1.10.0"
description="Advanced 6-DOF trajectory simulation for High-Power Rocketry."
dynamic = ["dependencies"]
readme = "README.md"
Expand Down
5 changes: 4 additions & 1 deletion rocketpy/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

import matplotlib.pyplot as plt
import numpy as np
from packaging import version as packaging_version
from scipy.integrate import solve_ivp

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

with open(filename, "r") as f:
data = json.load(f)
if data["version"] > version("rocketpy"):
if packaging_version.parse(data["version"]) > packaging_version.parse(
version("rocketpy")
):
warnings.warn(
"The file was saved in an updated version of",
f"RocketPy (v{data['version']}), the current",
Expand Down
Loading