From bb3f51d23c273153e0f5b0fc7daec2c76a2c4417 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Sat, 3 Aug 2024 10:26:47 -0400 Subject: [PATCH] Bump version to 3.1.0a3 --- 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 0502c5e437..42fe7826ff 100644 --- a/README.rst +++ b/README.rst @@ -94,7 +94,7 @@ possible. Development Site ================ -The current development version is 3.1.0a2. The current stable version is +The current development version is 3.1.0a3. 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 8cbbc0bc1f..66c0aa88ed 100644 --- a/SConstruct +++ b/SConstruct @@ -157,7 +157,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.0a2" +cantera_version = "3.1.0a3" # 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 250c985f41..6d7ff1350a 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.0a2 +PROJECT_NUMBER = 3.1.0a3 # 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 fc64f9e4f5..ffac45f37d 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.0a2"), + ("cantera-version", "3.1.0a3"), ("date", formatdate(localtime=True)), ]) if desc.strip(): diff --git a/interfaces/cython/cantera/cti2yaml.py b/interfaces/cython/cantera/cti2yaml.py index 56c88c8796..25dc89d9d6 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.0a2"), + ("cantera-version", "3.1.0a3"), ("date", formatdate(localtime=True)), ]) if filename != "": diff --git a/interfaces/cython/cantera/ctml2yaml.py b/interfaces/cython/cantera/ctml2yaml.py index 2cbf95c83f..fed391cca9 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.0a2", + "cantera-version": "3.1.0a3", "date": formatdate(localtime=True), } )