Skip to content

Commit

Permalink
Release/1.8.0 (#819)
Browse files Browse the repository at this point in the history
* doc: Update changelog.

* misc: Update contributors

* Bump up to version 1.8.0.

* Fix date.

* ci: Fix python version "3.10" vs 3.10

* Update release date.

Co-authored-by: Bradley Dice <bdice@bradleydice.com>
  • Loading branch information
b-butler and bdice committed Oct 5, 2022
1 parent c9a48fc commit 6776c02
Show file tree
Hide file tree
Showing 9 changed files with 43 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.10
python-version: "3.10"
- name: Install dependencies
run: |
# We must explicitly install the requirements so that we can force
Expand Down
25 changes: 24 additions & 1 deletion .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,29 @@
{
"affiliation": "Jodhpur Institute of Engineering and Technology",
"name": "Shantanu Dave"
},
{
"affiliation": "Cluster Innovation Centre, New Delhi",
"name": "Onkar Mahapatra"
},
{
"affiliation": "",
"name": "Parisa Tork"
},
{
"affiliation": "University of Wisconsin-Madison",
"name": "Matthew Feickert",
"orcid": "0000-0003-4124-7862"
},
{
"affiliation": "Cornell University",
"name": "Rachael S Skye",
"orcid": "0000-0001-8639-3607"
},
{
"affiliation": "University of Michigan",
"name": "Alain Kadar",
"orcid": "0000-0002-0522-4199"
}
],
"creators": [
Expand Down Expand Up @@ -128,5 +151,5 @@
"id": "http://www.opensource.org/licenses/BSD-3-Clause"
},
"title": "signac",
"version": "1.7.0"
"version": "1.8.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
version: 1.7.0
version: 1.8.0
abstract: |
The signac framework helps users manage and scale file-based workflows, facilitating data
reuse, sharing, and reproducibility. It provides a simple and robust data model to create
Expand Down
9 changes: 6 additions & 3 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The **signac** package follows `semantic versioning <https://semver.org/>`_.
Version 1
=========

[1.8.0] -- 2021-xx-xx
[1.8.0] -- 2022-10-05
---------------------

Added
Expand All @@ -22,7 +22,7 @@ Changed
+++++++

- Schema migration is now performed on directories rather than signac projects and supports a wider range of schemas (#654).
- Deprecated features now use ``FutureWarning`` instead of ``DeprecationWarning``, which is hidden by default (#687, #691).
- Deprecated features now use ``FutureWarning`` instead of ``DeprecationWarning``, which is hidden by default (#687, #691, #692).
- Project names have a default in anticipation of removing names entirely. Project names will be removed in signac 2.0 (#644).
- ``Project.workspace`` is now a property, not a method (#685).
- Continuous integration uses GitHub Actions instead of CircleCI (#776, #788).
Expand Down Expand Up @@ -50,11 +50,14 @@ Fixed
- ``Collection`` class no longer raises an error when searching by a primary key that does not exist (#676).
- Relative paths on Windows are not used if the current directory has no common prefix (#777).
- ``get_project()`` now raises an error if provided a root directory that does not exist (#779, #792).
- Catch internally raised warnings on use of deprecated password cache (#754).
- Catch ``KeyError`` from multithreading error (#710).
- Tests now properly show raised warnings (#603).

Removed
+++++++

- Removed upper bound of Python 4 on ``python_requires`` (#781).
- Removed upper bound of Python 4 on ``python_requires`` (#780, #781).
- 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>`__.
- Dropped dependency on ``deprecation`` package (#687, #718).
- Removed unused ``_extract`` utility function to avoid CVE-2007-4559 (#829).
Expand Down
6 changes: 6 additions & 0 deletions contributors.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ contributors:
-
family-names: Tork
given-names: Parisa
affiliation: ""
-
family-names: "Feickert"
given-names: "Matthew"
Expand All @@ -124,4 +125,9 @@ contributors:
given-names: "Rachael S"
affiliation: "Cornell University"
orcid: "https://orcid.org/0000-0001-8639-3607"
-
family-names: Kadar
given-names: Alain
affiliation: "University of Michigan"
orcid: "https://orcid.org/0000-0002-0522-4199"
...
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 = "1.7.0"
version = "1.8.0"
# The full version, including alpha/beta/rc tags.
release = "1.7.0"
release = "1.8.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.7.0
current_version = 1.8.0
commit = True
tag = False
message = Bump up to version {new_version}.
Expand Down Expand Up @@ -61,4 +61,3 @@ filterwarnings =
[bumpversion:file:CITATION.cff]

[bumpversion:file:.zenodo.json]

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

setup(
name="signac",
version="1.7.0",
version="1.8.0",
packages=find_packages(),
zip_safe=True,
maintainer="signac Developers",
Expand Down
2 changes: 1 addition & 1 deletion signac/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"""Define signac version."""


__version__ = "1.7.0"
__version__ = "1.8.0"

SCHEMA_VERSION = "1"

Expand Down

0 comments on commit 6776c02

Please sign in to comment.