Skip to content
Snippets Groups Projects
Commit 2a014c92 authored by Rob Moss's avatar Rob Moss
Browse files

Release pypfilt 0.6.0

parent b0ed4c98
Branches
Tags 0.6.0
No related merge requests found
Pipeline #6513 failed
0.6.0 (unreleased)
0.6.0 (2020-08-12)
------------------
This release introduces major structural changes to the entire package, and
incorporates a number of features that were originally implemented in the
``epifx`` package.
Please see the online documentation for further details.
The major user-facing changes are:
* Breaking change: drop support for Python 2, require Python 3.6 or newer.
* Breaking change: forecast scenarios are now defined in TOML files.
0.5.5 (2019-11-25)
------------------
......
......@@ -76,7 +76,7 @@ copyright = u'2014-20, Rob Moss'
# The short X.Y version.
version = '0.6'
# The full version, including alpha/beta/rc tags.
release = '0.6.0a1'
release = '0.6.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
......
......@@ -19,7 +19,7 @@ tagging the relevant commit with the new version number.
**does not** need to be updated if the version number is being increased
from X.Y.Z to X.Y.Z+1.
* Update the version number in ``pypfilt/version.py``.
* Update the version number in ``src/pypfilt/version.py``.
* Update the version number in ``setup.cfg``.
......@@ -31,7 +31,7 @@ tagging the relevant commit with the new version number.
.. code-block:: shell
git add NEWS.rst doc/conf.py pypfilt/version.py setup.py
git add NEWS.rst doc/conf.py pypfilt/version.py setup.cfg
git commit -m "Release pypfilt X.Y.Z"
* Tag this commit ``X.Y.Z``.
......
[metadata]
name = pypfilt
version = 0.6.0a1
version = 0.6.0
url = https://bitbucket.org/robmoss/particle-filter-for-python/
project-urls =
Documentation = https://pypfilt.readthedocs.io/en/latest/
......
"""Define the package version in a submodule to allow relative imports."""
__version__ = u'0.6.0a1'
__version__ = u'0.6.0'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment