Bump version to 3.0.0b1

This commit is contained in:
Ray Speth 2023-07-01 12:57:40 -04:00 committed by Ray Speth
parent be63409f53
commit 2771e614f5
6 changed files with 6 additions and 6 deletions

View File

@ -94,7 +94,7 @@ possible.
Development Site Development Site
================ ================
The current development version is 3.0.0a5. The current stable version is The current development version is 3.0.0b1. The current stable version is
2.6.0. The `latest Cantera source code <https://github.com/Cantera/cantera>`_, 2.6.0. The `latest Cantera source code <https://github.com/Cantera/cantera>`_,
the `issue tracker <https://github.com/Cantera/cantera/issues>`_ for bugs and the `issue tracker <https://github.com/Cantera/cantera/issues>`_ for bugs and
enhancement requests, `downloads of Cantera releases and binary installers enhancement requests, `downloads of Cantera releases and binary installers

View File

@ -947,7 +947,7 @@ for arg in ARGUMENTS:
logger.error(f"Encountered unexpected command line option: {arg!r}") logger.error(f"Encountered unexpected command line option: {arg!r}")
sys.exit(1) sys.exit(1)
env["cantera_version"] = "3.0.0a5" env["cantera_version"] = "3.0.0b1"
# For use where pre-release tags are not permitted (MSI, sonames) # For use where pre-release tags are not permitted (MSI, sonames)
env['cantera_pure_version'] = re.match(r'(\d+\.\d+\.\d+)', env['cantera_version']).group(0) env['cantera_pure_version'] = re.match(r'(\d+\.\d+\.\d+)', env['cantera_version']).group(0)
env['cantera_short_version'] = re.match(r'(\d+\.\d+)', env['cantera_version']).group(0) env['cantera_short_version'] = re.match(r'(\d+\.\d+)', env['cantera_version']).group(0)

View File

@ -38,7 +38,7 @@ PROJECT_NAME = Cantera
# could be handy for archiving the generated documentation or if some version # could be handy for archiving the generated documentation or if some version
# control system is used. # control system is used.
PROJECT_NUMBER = 3.0.0a5 PROJECT_NUMBER = 3.0.0b1
# Using the PROJECT_BRIEF tag one can provide an optional one line description # 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 # for a project that appears at the top of each page and should give viewer a

View File

@ -1947,7 +1947,7 @@ class Parser:
metadata = BlockMap([ metadata = BlockMap([
("generator", "ck2yaml"), ("generator", "ck2yaml"),
("input-files", FlowList(files)), ("input-files", FlowList(files)),
("cantera-version", "3.0.0a5"), ("cantera-version", "3.0.0b1"),
("date", formatdate(localtime=True)), ("date", formatdate(localtime=True)),
]) ])
if desc.strip(): if desc.strip():

View File

@ -1661,7 +1661,7 @@ def convert(filename=None, output_name=None, text=None, encoding="latin-1"):
# information regarding conversion # information regarding conversion
metadata = BlockMap([ metadata = BlockMap([
("generator", "cti2yaml"), ("generator", "cti2yaml"),
("cantera-version", "3.0.0a5"), ("cantera-version", "3.0.0b1"),
("date", formatdate(localtime=True)), ("date", formatdate(localtime=True)),
]) ])
if filename != "<string>": if filename != "<string>":

View File

@ -2638,7 +2638,7 @@ def convert(
metadata = BlockMap( metadata = BlockMap(
{ {
"generator": "ctml2yaml", "generator": "ctml2yaml",
"cantera-version": "3.0.0a5", "cantera-version": "b1",
"date": formatdate(localtime=True), "date": formatdate(localtime=True),
} }
) )