Skip to content

Commit

Permalink
1.22.16
Browse files Browse the repository at this point in the history
  • Loading branch information
jewels86 committed Feb 3, 2025
1 parent e9159a9 commit 93dc3c5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ Axinite uses a derivative of the **semantic versioning system** to record change
- Patch increments represent bug fixes, modifications that don't directly affect users, progress towards a milestone/goal, or other small changes.

Although releases are only created for every minor or major increment, patch increments are still uploaded to PyPI.
## 1.22.16 (2/3/25)
- Fixed combine method including the path attribute
## 1.22.11 - 1.22.15 (2/1/25)
- Made sure to include `scipy` in the dependencies
- Stopped VPython from opening on import
Expand Down
2 changes: 1 addition & 1 deletion axinite/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using various methods, and loading simulation data.
"""

__version__ = "1.22.15"
__version__ = "1.22.16"

from axinite.body import Body
from axinite.functions import vector_magnitude_jit, unit_vector_jit, gravitational_force_jit, body_dtype, \
Expand Down
1 change: 1 addition & 0 deletions axinite/tools/combine.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@ def combine(meta: dict, file: dict, indent=4) -> str:
filedata = json.loads(file)
if "name" in metadata and "name" in filedata: del filedata['name']
if "author" in metadata and "author" in filedata: del filedata['author']
del metadata['path']
combined = {**metadata, **filedata}
return json.dumps(combined, indent=indent)
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "axinite"
version = "1.22.15"
version = "1.22.16"
dependencies = ["numpy", "numba", "vpython", "plotly", "scipy"]
authors = [{ name = "Jewels", email = "jewels@jewels86.me" }]
maintainers = [{ name = "Jewels", email = "jewels@jewels86.me" }]
Expand Down

0 comments on commit 93dc3c5

Please sign in to comment.