Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.10.2 #716

Merged
merged 2 commits into from
Mar 3, 2025
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
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.10.2.dev0
current_version = 1.10.2
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
serialize =
{major}.{minor}.{patch}.{release}{dev}
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors:
given-names: "Jo"
orcid: "https://orcid.org/0000-0001-6855-442X"
title: "galpy"
version: 1.10.2.dev0
version: 1.10.2
url: "https://github.com/jobovy/galpy"
preferred-citation:
type: article
Expand Down
16 changes: 13 additions & 3 deletions HISTORY.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,26 @@
v1.10.2 (expected around 2025-03-01)
v1.10.2 (2025-03-03)
====================

- Implemented the IAS15 integrator of Rein & Spiegel 2015.

- Combine the drift calculations in the Python leapfrog integrator (#365).
- Speed-up the C implementation of PowerSphericalPotentialwCutoff (#706).

- Combine the drift calculations in the Python leapfrog integrator for a small
speed-up (#690).

- Clarify the use of non-equispaced time arrays in orbit integration (#711).

- Fix the handling of unbound orbits in the Orbit action-angle interface (#712).

- Move the checks for non-axisymmetric and dissipative potentials from internal to
public potential/force evaluation functions (e.g., from _evaluate[Potentials,
Rforces, phitorques, zforces] to evaluate[Potentials, Rforces, phitorques, zforces])
for performance improvements.

- Add an isDissipative attribute to force classes.
- Add an isDissipative attribute to force classes.

- Print warning when initializing an Orbit with a SkyCoord that does not have the Sun's
positional and velocity parameters set (#715).

v1.10.1 (2024-11-01)
====================
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def linkcode_resolve(domain, info):
# built documents.
#
# The short X.Y version.
version = "1.10.2.dev0"
version = "1.10.2"
# The full version, including alpha/beta/rc tags.
release = version
on_rtd = os.environ.get("READTHEDOCS", None) == "True"
Expand Down
2 changes: 1 addition & 1 deletion galpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.10.2.dev0"
__version__ = "1.10.2"
# Check whether a new version is available
import datetime
import http.client
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ def build_extensions(self):
setup(
cmdclass=dict(build_ext=BuildExt), # this to allow compiler check above
name="galpy",
version="1.10.2.dev0",
version="1.10.2",
description="Galactic Dynamics in python",
author="Jo Bovy",
author_email="bovy@astro.utoronto.ca",
Expand Down
Loading