Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
particle-filter-for-python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Rob Moss
particle-filter-for-python
Commits
2a014c92
Commit
2a014c92
authored
4 years ago
by
Rob Moss
Browse files
Options
Downloads
Patches
Plain Diff
Release pypfilt 0.6.0
parent
b0ed4c98
Branches
Branches containing commit
Tags
0.6.0
Tags containing commit
No related merge requests found
Pipeline
#6513
failed
4 years ago
Stage: build
Stage: test
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
NEWS.rst
+9
-1
9 additions, 1 deletion
NEWS.rst
doc/conf.py
+1
-1
1 addition, 1 deletion
doc/conf.py
doc/release-process.rst
+2
-2
2 additions, 2 deletions
doc/release-process.rst
setup.cfg
+1
-1
1 addition, 1 deletion
setup.cfg
src/pypfilt/version.py
+1
-1
1 addition, 1 deletion
src/pypfilt/version.py
with
14 additions
and
6 deletions
NEWS.rst
+
9
−
1
View file @
2a014c92
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)
------------------
...
...
This diff is collapsed.
Click to expand it.
doc/conf.py
+
1
−
1
View file @
2a014c92
...
...
@@ -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.0
a1
'
release
=
'
0.6.0
'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
...
...
This diff is collapsed.
Click to expand it.
doc/release-process.rst
+
2
−
2
View file @
2a014c92
...
...
@@ -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``.
...
...
This diff is collapsed.
Click to expand it.
setup.cfg
+
1
−
1
View file @
2a014c92
[metadata]
name
=
pypfilt
version
=
0.6.0
a1
version
=
0.6.0
url
=
https://bitbucket.org/robmoss/particle-filter-for-python/
project-urls
=
Documentation
=
https://pypfilt.readthedocs.io/en/latest/
...
...
This diff is collapsed.
Click to expand it.
src/pypfilt/version.py
+
1
−
1
View file @
2a014c92
"""
Define the package version in a submodule to allow relative imports.
"""
__version__
=
u
'
0.6.0
a1
'
__version__
=
u
'
0.6.0
'
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment