Skip to content

Commit

Permalink
Bump version to 2.5.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
speth committed Feb 4, 2021
1 parent 25f996d commit e6244e4
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 @@ -90,7 +90,7 @@ possible.
Development Site
================

The current development version is 2.5.0b1. The current stable version is
The current development version is 2.5.0rc1. 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 @@ -719,7 +719,7 @@ for arg in ARGUMENTS:
print('Encountered unexpected command line argument: %r' % arg)
sys.exit(1)

env['cantera_version'] = "2.5.0b1"
env['cantera_version'] = "2.5.0rc1"
# 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
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.0b1
PROJECT_NUMBER = 2.5.0rc1

# 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.0b1'),
('cantera-version', '2.5.0rc1'),
('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 @@ -1640,7 +1640,7 @@ def convert(filename=None, output_name=None, text=None):
# information regarding conversion
metadata = BlockMap([
('generator', 'cti2yaml'),
('cantera-version', '2.5.0b1'),
('cantera-version', '2.5.0rc1'),
('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 @@ -2620,7 +2620,7 @@ def convert(
metadata = BlockMap(
{
"generator": "ctml2yaml",
"cantera-version": "2.5.0b1",
"cantera-version": "2.5.0rc1",
"date": formatdate(localtime=True),
}
)
Expand Down

0 comments on commit e6244e4

Please sign in to comment.