Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/0.27.0 #801

Merged
merged 3 commits into from
Jan 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.26.1
current_version = 0.27.0
commit = True
tag = False
message = Bump up to version {new_version}.
Expand Down
2 changes: 1 addition & 1 deletion .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -194,5 +194,5 @@
},
"title": "signac-flow",
"upload_type": "software",
"version": "0.26.1"
"version": "0.27.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.26.1
version: 0.27.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
7 changes: 5 additions & 2 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.27
============

[0.27.0] -- 202x-xx-xx
[0.27.0] -- 2024-01-15
----------------------

Added
Expand All @@ -19,14 +19,17 @@ Added

Changed
+++++++

- The Stampede2 environment is deprecated (#798).
bdice marked this conversation as resolved.
Show resolved Hide resolved
- Deprecate the current keys for submission/execution directives (#792).
- Show the "Using environment configuration:" message only in verbose output (#776).

Fixed
+++++

- ``srun`` invocation on Great-Lakes (#779).
- Restored static output of non-singleton groups (#773, #774).
- Remove warnings by using new `jsonschema` API (#787).
- Remove warnings by using new ``jsonschema`` API (#787).

Version 0.26
============
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.26.1"
version = "0.27.0"
# The full version, including alpha/beta/rc tags.
release = "0.26.1"
release = "0.27.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.26.1"
__version__ = "0.27.0"

__all__ = ["__version__"]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ requires = ["setuptools>=64.0.0"]

[project]
name = "signac-flow"
version = "0.26.1"
version = "0.27.0"
description = "Simple workflow management for signac projects."
readme = "README.md"
# Supported versions are determined according to NEP 29.
Expand Down
Loading