Skip to content

Commit

Permalink
Bump version to 3.0.0a2
Browse files Browse the repository at this point in the history
  • Loading branch information
ischoegl authored and speth committed Jul 24, 2022
1 parent c2830c3 commit 0e627ad
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -94,7 +94,7 @@ possible.
Development Site
================

The current development version is 3.0.0a1. The current stable version is
The current development version is 3.0.0a2. The current stable version is
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
enhancement requests, `downloads of Cantera releases and binary installers
Expand Down
2 changes: 1 addition & 1 deletion SConstruct
Expand Up @@ -876,7 +876,7 @@ for arg in ARGUMENTS:
logger.error(f"Encountered unexpected command line option: {arg!r}")
sys.exit(1)

env["cantera_version"] = "3.0.0a1"
env["cantera_version"] = "3.0.0a2"
# 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_short_version'] = re.match(r'(\d+\.\d+)', env['cantera_version']).group(0)
Expand Down
2 changes: 1 addition & 1 deletion doc/doxygen/Doxyfile
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = Cantera
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 3.0.0a1
PROJECT_NUMBER = 3.0.0a2

# 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
Expand Down
2 changes: 1 addition & 1 deletion interfaces/cython/cantera/ck2yaml.py
Expand Up @@ -1934,7 +1934,7 @@ def write_yaml(self, name='gas', out_name='mech.yaml'):
metadata = BlockMap([
("generator", "ck2yaml"),
("input-files", FlowList(files)),
("cantera-version", "3.0.0a1"),
("cantera-version", "3.0.0a2"),
("date", formatdate(localtime=True)),
])
if desc.strip():
Expand Down
2 changes: 1 addition & 1 deletion interfaces/cython/cantera/cti2yaml.py
Expand Up @@ -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.0.0a1"),
("cantera-version", "3.0.0a2"),
("date", formatdate(localtime=True)),
])
if filename != "<string>":
Expand Down
2 changes: 1 addition & 1 deletion interfaces/cython/cantera/ctml2yaml.py
Expand Up @@ -2641,7 +2641,7 @@ def convert(
metadata = BlockMap(
{
"generator": "ctml2yaml",
"cantera-version": "3.0.0a1",
"cantera-version": "3.0.0a2",
"date": formatdate(localtime=True),
}
)
Expand Down

0 comments on commit 0e627ad

Please sign in to comment.