From b27b31c2584dbc4e0d8ae90f4120eeafeebb8333 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Sun, 8 Oct 2017 21:53:12 -0400 Subject: [PATCH] Bump version to 1.4.0 --- doc/sphinx/source/conf.py | 2 +- python/ember/__init__.py | 2 +- python/setup.py.in | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/sphinx/source/conf.py b/doc/sphinx/source/conf.py index 4691aa9..3042909 100644 --- a/doc/sphinx/source/conf.py +++ b/doc/sphinx/source/conf.py @@ -55,7 +55,7 @@ # The short X.Y version. version = '1.4' # The full version, including alpha/beta/rc tags. -release = '1.4.0a1' +release = '1.4.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/python/ember/__init__.py b/python/ember/__init__.py index cff064c..1bcc77f 100644 --- a/python/ember/__init__.py +++ b/python/ember/__init__.py @@ -7,7 +7,7 @@ from output import * import utils -__version__ = '1.4.0a1' +__version__ = '1.4.0' # Add Ember's data file directory to Cantera's search path. Because the Python # module is statically linked to Cantera, this needs to be done separately for diff --git a/python/setup.py.in b/python/setup.py.in index 1da182c..ac39341 100644 --- a/python/setup.py.in +++ b/python/setup.py.in @@ -15,7 +15,7 @@ else: scripts = ['scripts/ember'] setup(name='Ember', - version='1.4.0a1', + version='1.4.0', description='Multipurpose 1D Flame Solver', long_description='', author='Raymond L. Speth',