Skip to content

Commit

Permalink
Increment version to 0.7.4 and update README
Browse files Browse the repository at this point in the history
  • Loading branch information
brian-rose committed Jun 23, 2019
1 parent cd687f9 commit 5f795c5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,9 @@ These are self-describing, and should all run out-of-the-box once the package is
Release history
----------------------

Version 0.7.4 (released June 2019)
New flexible solver for 1D advection-diffusion processes on non-uniform grids, along with some bug fixes.

Version 0.7.3 (released April 2019)
Bug fix and changes to continuous integration for Python 2.7 compatibility

Expand Down
2 changes: 1 addition & 1 deletion climlab/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
has been documented for a comprehensive understanding and traceability.
'''

__version__ = '0.7.4.dev2'
__version__ = '0.7.4'

# this should ensure that we can still import constants.py as climlab.constants
from .utils import constants, thermo, legendre
Expand Down
2 changes: 1 addition & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set version = "0.7.4.dev2" %}
{% set version = "0.7.4" %}

package:
name: climlab
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os, sys
import textwrap

VERSION = '0.7.4.dev2'
VERSION = '0.7.4'

# BEFORE importing setuptools, remove MANIFEST. Otherwise it may not be
# properly updated when the contents of directories change (true for distutils,
Expand Down

0 comments on commit 5f795c5

Please sign in to comment.