Skip to content

Commit

Permalink
Release/0.21.0 (#663)
Browse files Browse the repository at this point in the history
* doc: Add new version's date

* doc: Fix changelog RST formatting

* doc: Make sphinx doc language explicit

* Bump up to version 0.21.0.
  • Loading branch information
b-butler authored Aug 18, 2022
1 parent 314499b commit 11a6a58
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -180,5 +180,5 @@
},
"title": "signac-flow",
"upload_type": "software",
"version": "0.20.0"
"version": "0.21.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.20.0
version: 0.21.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,7 +8,7 @@ The numbers in brackets denote the related GitHub issue and/or pull request.
Version 0.21
============

[0.21.0] -- 2022-xx-xx
[0.21.0] -- 2022-08-18
----------------------

Added
Expand All @@ -19,13 +19,13 @@ Added
Changed
+++++++

- Changed `get_config_value` template filter to error without default on missing key (#649).
- Changed `get_config_value` template filter now takes a ``FlowProject`` as its first argument (#649).
- Changed ``get_config_value`` template filter to error without default on missing key (#649).
- Changed ``get_config_value`` template filter now takes a ``FlowProject`` as its first argument (#649).

Removed
+++++++

- Removed `require_config_value` template filter (#649).
- Removed ``require_config_value`` template filter (#649).
- Removed configuration key 'flow.import_packaged_environments' (#653).
- Removed configuaration key 'flow.environment_modules' (#651).

Expand Down
6 changes: 3 additions & 3 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,16 +78,16 @@ def __getattr__(cls, name):
# built documents.
#
# The short X.Y version.
version = "0.20.0"
version = "0.21.0"
# The full version, including alpha/beta/rc tags.
release = "0.20.0"
release = "0.21.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = None
language = "en"

# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
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.20.0"
__version__ = "0.21.0"

__all__ = ["__version__"]
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.20.0
current_version = 0.21.0
commit = True
tag = False
message = Bump up to version {new_version}.
Expand Down
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.20.0",
version="0.21.0",
packages=find_packages(),
include_package_data=True,
zip_safe=True,
Expand Down

0 comments on commit 11a6a58

Please sign in to comment.