Skip to content

Commit

Permalink
Release/0.19.0 (#635)
Browse files Browse the repository at this point in the history
* Update changelog

* Bump up to version 0.19.0.
  • Loading branch information
cbkerr authored Apr 7, 2022
1 parent 3959dd6 commit a1fce88
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 11 deletions.
7 changes: 6 additions & 1 deletion .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,11 @@
"affiliation": "University of Córdoba (Spain)",
"name": "Javier Barbero Gómez",
"orcid": "0000-0002-9317-1428"
},
{
"affiliation": "University of Delhi (India)",
"name": "Rohan Babbar",
"orcid": "0000-0002-7203-7641"
}
],
"creators": [
Expand Down Expand Up @@ -175,5 +180,5 @@
},
"title": "signac-flow",
"upload_type": "software",
"version": "0.18.1"
"version": "0.19.0"
}
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
---
cff-version: "1.0.3"
title: signac-flow
version: 0.18.1
version: 0.19.0
abstract: |
The signac-flow tool provides the basic components to set up simple to complex workflows for projects as part of the signac framework. That includes the definition of data pipelines, execution of data space operations and the submission of operations to high-performance super computers.
authors:
Expand Down
8 changes: 4 additions & 4 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ The numbers in brackets denote the related GitHub issue and/or pull request.
Version 0.19
============

[0.19.0] -- 2022-xx-xx
[0.19.0] -- 2022-04-07
----------------------

Changed
+++++++

- Drop support for `tqdm <https://github.com/tqdm/tqdm>`__ versions older than `4.60.0` (#614).
- Dropped support for `tqdm <https://github.com/tqdm/tqdm>`__ versions older than `4.60.0` (#614).
- Renamed hook triggers `on_finish` to `on_exit` and `on_fail` to `on_exception` (#612, #627).

Fixed
Expand All @@ -26,8 +26,8 @@ Removed
+++++++

- Internal utility functions have been removed from the public API (#615).
- Dropped support for Python 3.6 and Python 3.7 (#715) following the recommended support schedules of `NEP 29 <https://numpy.org/neps/nep-0029-deprecation_policy.html>`__.
- Drop support for `Jinja2 <https://palletsprojects.com/p/jinja/>`__ versions below `3.0.0` (#436).
- Dropped support for Python 3.6 and Python 3.7 following the recommended support schedules of `NEP 29 <https://numpy.org/neps/nep-0029-deprecation_policy.html>`__ (#628).
- Dropped support for `Jinja2 <https://palletsprojects.com/p/jinja/>`__ versions below `3.0.0` (#628).

Version 0.18
============
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ def __getattr__(cls, name):
# built documents.
#
# The short X.Y version.
version = "0.18.1"
version = "0.19.0"
# The full version, including alpha/beta/rc tags.
release = "0.18.1"
release = "0.19.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion flow/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
# This software is licensed under the BSD 3-Clause License.
"""Define the signac-flow version."""

__version__ = "0.18.1"
__version__ = "0.19.0"

__all__ = ["__version__"]
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.18.1
current_version = 0.19.0
commit = True
tag = False
message = Bump up to version {new_version}.
Expand Down Expand Up @@ -43,3 +43,4 @@ omit =
[tool:pytest]
filterwarnings =
ignore:.*The env argument is deprecated*:DeprecationWarning

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

setup(
name="signac-flow",
version="0.18.1",
version="0.19.0",
packages=find_packages(),
include_package_data=True,
zip_safe=True,
Expand Down

0 comments on commit a1fce88

Please sign in to comment.