diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c15c4de..5979fe6 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.2.0 commit = True tag = True diff --git a/.zenodo.json b/.zenodo.json index 8558862..df39fbc 100644 --- a/.zenodo.json +++ b/.zenodo.json @@ -2,7 +2,7 @@ "license": "other-open", "title": "PySnobal", - "version": "v0.1.0", + "version": "v0.2.0", "upload_type": "software", "keywords": [ "snow modeling", diff --git a/README.md b/README.md index 936fe58..21961c8 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Python Snobali v0.1.0 +# Python Snobali v0.2.0 Python implementation of the Snobal model applied at either a point or over and image (iSnobal). This package conatains the C libraries of Snobal in a python wrapper for more flexibility and ease of interaction. diff --git a/pysnobal/__init__.py b/pysnobal/__init__.py index 6258a98..685d21a 100755 --- a/pysnobal/__init__.py +++ b/pysnobal/__init__.py @@ -2,7 +2,7 @@ __author__ = 'Scott Havens' __email__ = 'scott.havens@ars.usda.gov' -__version__ = '0.1.0' +__version__ = '0.2.0' # from pysnobal import lib # import lib diff --git a/setup.py b/setup.py index efe85a3..d60bab8 100755 --- a/setup.py +++ b/setup.py @@ -62,7 +62,7 @@ setup( name='pysnobal', - version='0.1.0', + version='0.2.0', description="Python wrapper of the Snobal point model", long_description=readme + '\n\n' + history, author="Scott Havens",