Bump version to 3.2.0b1

This commit is contained in:
Ray Speth
2025-10-31 21:31:06 -04:00
committed by Ray Speth
parent 4ab35b3bf4
commit 274cad3985
7 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -91,7 +91,7 @@ possible.
Development Site
================
The current development version is 3.2.0a5. The current stable version is
The current development version is 3.2.0b1. The current stable version is
3.1.0. The `latest Cantera source code <https://github.com/Cantera/cantera>`_,
the `issue tracker <https://github.com/Cantera/cantera/issues>`_ for bugs and
enhancement requests, `downloads of Cantera releases and binary installers
+1 -1
View File
@@ -158,7 +158,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.2.0a5"
cantera_version = "3.2.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)
+1 -1
View File
@@ -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.2.0a5
PROJECT_NUMBER = 3.2.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
+1 -1
View File
@@ -2036,7 +2036,7 @@ class Parser:
metadata = BlockMap([
("generator", "ck2yaml"),
("input-files", FlowList(self.files)),
("cantera-version", "3.2.0a5"),
("cantera-version", "3.2.0b1"),
("date", formatdate(localtime=True)),
])
if desc.strip():
+1 -1
View File
@@ -1649,7 +1649,7 @@ def convert(filename=None, output_name=None, text=None, encoding="latin-1"):
# information regarding conversion
metadata = BlockMap([
("generator", "cti2yaml"),
("cantera-version", "3.2.0a5"),
("cantera-version", "3.2.0b1"),
("date", formatdate(localtime=True)),
])
if filename != "<string>":
+1 -1
View File
@@ -2736,7 +2736,7 @@ def convert(
metadata: CommentedMap = BlockMap(
{
"generator": "ctml2yaml",
"cantera-version": "3.2.0a5",
"cantera-version": "3.2.0b1",
"date": formatdate(localtime=True),
}
)
+1 -1
View File
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "sourcegen"
version = "3.2.0a5"
version = "3.2.0b1"
license-files = ["../../License.txt"]
description = "Source generator for creating Cantera interface code"
authors = [{name = "Cantera Developers"}]