Skip to content

Commit

Permalink
Bump version to Cantera 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
speth committed Dec 16, 2024
1 parent 0caf1bd commit 429c591
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ possible.
Development Site
================

The current development version is 3.1.0b1. The current stable version is
3.0.0. The `latest Cantera source code <https://github.com/Cantera/cantera>`_,
The current development version is 3.1.0. 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
<https://github.com/Cantera/cantera/releases>`_ , and the `Cantera wiki
Expand Down
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,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.1.0b1"
cantera_version = "3.1.0"
# 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)
Expand Down
2 changes: 1 addition & 1 deletion doc/doxygen/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.0b1
PROJECT_NUMBER = 3.1.0

# 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
4 changes: 2 additions & 2 deletions doc/sphinx/reference/releasenotes/v3.1.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Cantera 3.1.0b1
# Cantera 3.1.0

Published on November 10, 2024 | [Full release on GitHub](https://github.com/Cantera/cantera/releases/tag/v3.1.0b1)
Published on December 14, 2024 | [Full release on GitHub](https://github.com/Cantera/cantera/releases/tag/v3.1.0)

The Cantera development team is pleased to announce the availability of Cantera 3.1.0. There have been over [800 commits](https://github.com/Cantera/cantera/wiki/Cantera-3.1.0-Changelog) to Cantera since the last version, 3.0.0, which was released in August 2023. We have closed or merged [128 pull requests](https://github.com/Cantera/cantera/pulls?q=is%3Apr+merged%3A2023-08-23..2024-11-10+is%3Aclosed) and closed [81 issues](https://github.com/Cantera/cantera/issues?q=is%3Aissue+closed%3A2023-08-23..2024-12-14+is%3Aclosed) and [24 enhancement proposals](https://github.com/Cantera/enhancements/issues?q=is:issue+closed:2023-08-23..2024-12-14+is:closed). Instructions for installing Cantera 3.1 are available on the [Cantera website](/install/index).

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 @@ -2051,7 +2051,7 @@ def write_yaml(self, name='gas', out_name='mech.yaml'):
metadata = BlockMap([
("generator", "ck2yaml"),
("input-files", FlowList(self.files)),
("cantera-version", "3.1.0b1"),
("cantera-version", "3.1.0"),
("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 @@ -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.1.0b1"),
("cantera-version", "3.1.0"),
("date", formatdate(localtime=True)),
])
if filename != "<string>":
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 @@ -2637,7 +2637,7 @@ def convert(
metadata = BlockMap(
{
"generator": "ctml2yaml",
"cantera-version": "3.1.0b1",
"cantera-version": "3.1.0",
"date": formatdate(localtime=True),
}
)
Expand Down
2 changes: 1 addition & 1 deletion test/data/nasa9-embedded.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
generator: ck2yaml
input-files: [nasa9-embedded.inp]
cantera-version: 3.1.0a2
cantera-version: 3.1.0
date: Sat, 20 Jul 2024 15:58:26 -0400

units: {length: cm, time: s, quantity: mol, activation-energy: cal/mol}
Expand Down
2 changes: 1 addition & 1 deletion test/data/nonreactant-order.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
generator: ck2yaml
input-files: [err-nonreactant-order.inp, dummy-thermo.dat]
cantera-version: 3.1.0a2
cantera-version: 3.1.0
date: Fri, 28 Jun 2024 13:10:15 -0400

units: {length: cm, time: s, quantity: mol, activation-energy: cal/mol}
Expand Down

0 comments on commit 429c591

Please sign in to comment.