From 35849bcb6498a195cd43420ae6683a52b3797cfb Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Sun, 10 Nov 2024 13:33:59 -0500 Subject: [PATCH] Bump version to 3.1.0b1 --- README.rst | 2 +- SConstruct | 2 +- doc/doxygen/Doxyfile | 2 +- interfaces/cython/cantera/ck2yaml.py | 2 +- interfaces/cython/cantera/cti2yaml.py | 2 +- interfaces/cython/cantera/ctml2yaml.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.rst b/README.rst index d2aca73316..f474bbc0ad 100644 --- a/README.rst +++ b/README.rst @@ -94,7 +94,7 @@ possible. Development Site ================ -The current development version is 3.1.0a4. The current stable version is +The current development version is 3.1.0b1. The current stable version is 3.0.0. The `latest Cantera source code `_, the `issue tracker `_ for bugs and enhancement requests, `downloads of Cantera releases and binary installers diff --git a/SConstruct b/SConstruct index 80b193455b..353e26c243 100644 --- a/SConstruct +++ b/SConstruct @@ -163,7 +163,7 @@ logger.info( f"SCons {SCons.__version__} is using the following Python interpreter:\n" f" {sys.executable} (Python {python_version})", print_level=False) -cantera_version = "3.1.0a4" +cantera_version = "3.1.0b1" # For use where pre-release tags are not permitted (MSI, sonames) cantera_pure_version = re.match(r'(\d+\.\d+\.\d+)', cantera_version).group(0) cantera_short_version = re.match(r'(\d+\.\d+)', cantera_version).group(0) diff --git a/doc/doxygen/Doxyfile b/doc/doxygen/Doxyfile index b68399a50b..021086d202 100644 --- a/doc/doxygen/Doxyfile +++ b/doc/doxygen/Doxyfile @@ -48,7 +48,7 @@ PROJECT_NAME = Cantera # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 3.1.0a4 +PROJECT_NUMBER = 3.1.0b1 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/interfaces/cython/cantera/ck2yaml.py b/interfaces/cython/cantera/ck2yaml.py index c0f649399f..c3a754f72e 100644 --- a/interfaces/cython/cantera/ck2yaml.py +++ b/interfaces/cython/cantera/ck2yaml.py @@ -2055,7 +2055,7 @@ def write_yaml(self, name='gas', out_name='mech.yaml'): metadata = BlockMap([ ("generator", "ck2yaml"), ("input-files", FlowList(self.files)), - ("cantera-version", "3.1.0a4"), + ("cantera-version", "3.1.0b1"), ("date", formatdate(localtime=True)), ]) if desc.strip(): diff --git a/interfaces/cython/cantera/cti2yaml.py b/interfaces/cython/cantera/cti2yaml.py index 9c7d3703d9..f3f0e1c886 100644 --- a/interfaces/cython/cantera/cti2yaml.py +++ b/interfaces/cython/cantera/cti2yaml.py @@ -1661,7 +1661,7 @@ def convert(filename=None, output_name=None, text=None, encoding="latin-1"): # information regarding conversion metadata = BlockMap([ ("generator", "cti2yaml"), - ("cantera-version", "3.1.0a4"), + ("cantera-version", "3.1.0b1"), ("date", formatdate(localtime=True)), ]) if filename != "": diff --git a/interfaces/cython/cantera/ctml2yaml.py b/interfaces/cython/cantera/ctml2yaml.py index bb9bd9ca3a..bd47d8de5a 100644 --- a/interfaces/cython/cantera/ctml2yaml.py +++ b/interfaces/cython/cantera/ctml2yaml.py @@ -2637,7 +2637,7 @@ def convert( metadata = BlockMap( { "generator": "ctml2yaml", - "cantera-version": "3.1.0a4", + "cantera-version": "3.1.0b1", "date": formatdate(localtime=True), } )