diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c9bc56a56..b74e110fc 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.10.2 +current_version = 1.11.0.dev0 parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))? serialize = {major}.{minor}.{patch}.{release}{dev} diff --git a/CITATION.cff b/CITATION.cff index ce292060a..a1b9676aa 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -5,7 +5,7 @@ authors: given-names: "Jo" orcid: "https://orcid.org/0000-0001-6855-442X" title: "galpy" -version: 1.10.2 +version: 1.11.0.dev0 url: "https://github.com/jobovy/galpy" preferred-citation: type: article diff --git a/HISTORY.txt b/HISTORY.txt index 7417de647..bc825fddf 100644 --- a/HISTORY.txt +++ b/HISTORY.txt @@ -1,3 +1,8 @@ +v1.11.0 (expected around 2025-07-01) +==================== + +Nothing yet! + v1.10.2 (2025-03-03) ==================== diff --git a/doc/source/conf.py b/doc/source/conf.py index 375ceece6..fe8982a03 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -126,7 +126,7 @@ def linkcode_resolve(domain, info): # built documents. # # The short X.Y version. -version = "1.10.2" +version = "1.11.0.dev0" # The full version, including alpha/beta/rc tags. release = version on_rtd = os.environ.get("READTHEDOCS", None) == "True" diff --git a/galpy/__init__.py b/galpy/__init__.py index 48fa13e14..d27c8aee1 100644 --- a/galpy/__init__.py +++ b/galpy/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.10.2" +__version__ = "1.11.0.dev0" # Check whether a new version is available import datetime import http.client diff --git a/setup.py b/setup.py index 2376ec5ce..7049dd4b4 100644 --- a/setup.py +++ b/setup.py @@ -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", + version="1.11.0.dev0", description="Galactic Dynamics in python", author="Jo Bovy", author_email="bovy@astro.utoronto.ca",