diff --git a/CHANGES.md b/CHANGES.md index c0e9865..efdd943 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,6 @@ #Change Log -## (v0.3) (not yet released) +## (v0.3) Feature Release (18 Mar 2016) - Fix bug in ``predict()`` for ``LombScargle`` methods when ``center_data=False`` - Fix bug in ``score()`` for ``LombScargle`` methods when ``center_data=False`` and ``fit_offset=False`` diff --git a/doc/conf.py b/doc/conf.py index 7313619..dc32105 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -85,7 +85,7 @@ # The short X.Y version. version = '0.3' # The full version, including alpha/beta/rc tags. -release = '0.3.dev0' +release = '0.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/gatspy/__init__.py b/gatspy/__init__.py index c745f38..d60a11a 100644 --- a/gatspy/__init__.py +++ b/gatspy/__init__.py @@ -7,7 +7,7 @@ from . import datasets, periodic __all__ = ['datasets', 'periodic'] -__version__ = '0.3.dev0' +__version__ = '0.3' def setup():