Skip to content

Commit

Permalink
Bump version to 2.5.0b1
Browse files Browse the repository at this point in the history
  • Loading branch information
speth committed Sep 1, 2020
1 parent 3f455e1 commit 100711f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ possible.
Development Site
================

The current development version is 2.5.0a4. The current stable version is
The current development version is 2.5.0b1. The current stable version is
2.4.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
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ for arg in ARGUMENTS:
sys.exit(1)

# Require a StrictVersion-compatible version
env['cantera_version'] = "2.5.0a4"
env['cantera_version'] = "2.5.0b1"
ctversion = StrictVersion(env['cantera_version'])
# For use where pre-release tags are not permitted (MSI, sonames)
env['cantera_pure_version'] = '.'.join(str(x) for x in ctversion.version)
Expand Down
2 changes: 1 addition & 1 deletion doc/doxygen/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ PROJECT_NAME = Cantera
# This could be handy for archiving the generated documentation or
# if some version control system is used.

PROJECT_NUMBER = 2.5.0a4
PROJECT_NUMBER = 2.5.0b1

# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
Expand Down
2 changes: 1 addition & 1 deletion interfaces/cython/cantera/ck2yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -1898,7 +1898,7 @@ def write_yaml(self, name='gas', out_name='mech.yaml'):
metadata = BlockMap([
('generator', 'ck2yaml'),
('input-files', FlowList(files)),
('cantera-version', '2.5.0a4'),
('cantera-version', '2.5.0b1'),
('date', formatdate(localtime=True)),
])
if desc.strip():
Expand Down
2 changes: 1 addition & 1 deletion interfaces/cython/cantera/cti2yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -1634,7 +1634,7 @@ def convert(filename=None, output_name=None, text=None):
# information regarding conversion
metadata = BlockMap([
('generator', 'cti2yaml'),
('cantera-version', '2.5.0a4'),
('cantera-version', '2.5.0b1'),
('date', formatdate(localtime=True)),
])
if filename is not None:
Expand Down
2 changes: 1 addition & 1 deletion interfaces/cython/cantera/ctml2yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -2607,7 +2607,7 @@ def convert(
metadata = BlockMap(
{
"generator": "ctml2yaml",
"cantera-version": "2.5.0a4",
"cantera-version": "2.5.0b1",
"date": formatdate(localtime=True),
}
)
Expand Down

0 comments on commit 100711f

Please sign in to comment.