Skip to content

Commit

Permalink
Release/0.15.0 (#546)
Browse files Browse the repository at this point in the history
* Update changelog for 0.15.0

* Add Kelly to contributors list

* Update pre-commit hook

* Bump up to version 0.15.0.

* Fix Kelly's contributor specification

* Fix changelog wording

Co-authored-by: Brandon Butler <[email protected]>
  • Loading branch information
kidrahahjo and b-butler authored Jun 24, 2021
1 parent a4d7d89 commit 5e3dd6e
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ repos:
exclude: 'setup.cfg'
- id: debug-statements
- repo: https://github.com/asottile/pyupgrade
rev: 'v2.19.1'
rev: 'v2.19.4'
hooks:
- id: pyupgrade
args:
- --py36-plus
- repo: https://github.com/PyCQA/isort
rev: '5.8.0'
rev: '5.9.1'
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: '21.5b2'
rev: '21.6b0'
hooks:
- id: black
- repo: https://github.com/PyCQA/flake8
Expand Down
7 changes: 6 additions & 1 deletion .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,11 @@
"affiliation": "University of Michigan",
"name": "Charlotte Zhao",
"orcid": "0000-0003-4915-1064"
},
{
"affiliation": "University of Michigan",
"name": "Kelly Wang",
"orcid": "0000-0002-7326-3835"
}
],
"creators": [
Expand Down Expand Up @@ -165,5 +170,5 @@
},
"title": "signac-flow",
"upload_type": "software",
"version": "0.14.0"
"version": "0.15.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.14.0
version: 0.15.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
5 changes: 3 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.15
============

[0.15.0] -- 2021-xx-xx
[0.15.0] -- 2021-06-23
----------------------

Added
Expand All @@ -26,12 +26,13 @@ Changed
- ``flow.directives`` is deprecated in favor of ``flow.FlowProject.operation.with_directives`` (#309, #502).
- All environments require a scheduler in order to submit, even in pretend mode (#533).
- Submitting in pretend mode will show additional scheduler command information (#533).
- Support fractional timeout value in Python and command line interface (#541).

Fixed
+++++

- Errors raised during submission were not being shown to users (#517, #518).
- Fixed dependency flag for SLURM submissions (#530).
- Fixed dependency flag for SLURM submissions (#530, #531).

Version 0.14
============
Expand Down
5 changes: 5 additions & 0 deletions contributors.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,4 +147,9 @@ contributors:
given-names: Charlotte
orcid: "https://orcid.org/0000-0003-4915-1064"
affiliation: "University of Michigan"
-
family-names: Wang
given-names: Kelly
orcid: "https://orcid.org/0000-0002-7326-3835"
affiliation: "University of Michigan"
...
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ def __getattr__(cls, name):
# built documents.
#
# The short X.Y version.
version = "0.14.0"
version = "0.15.0"
# The full version, including alpha/beta/rc tags.
release = "0.14.0"
release = "0.15.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.14.0"
__version__ = "0.15.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.14.0
current_version = 0.15.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 @@ -30,7 +30,7 @@

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

0 comments on commit 5e3dd6e

Please sign in to comment.