Skip to content

Commit

Permalink
Release/2.0.0 (#911)
Browse files Browse the repository at this point in the history
* Fix bumpversion name.

* Update changelog.

* Bump up to version 2.0.0.
  • Loading branch information
bdice committed Mar 30, 2023
1 parent 2b6519d commit 6599893
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bumpversion → .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.8.0
current_version = 2.0.0
commit = True
tag = False
message = Bump up to version {new_version}.
Expand Down
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.8.0
version: 2.0.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
4 changes: 2 additions & 2 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ The **signac** package follows `semantic versioning <https://semver.org/>`_.
Version 2
=========

[2.0.0] -- 2023-xx-xx
[2.0.0] -- 2023-03-30
---------------------

Added
+++++

- Official support for Python 3.11 (#875).
- ``H5Store`` related errors are now included in the public API (#775).
- Users can now access the project which a job belongs to from the job object.
- Users can now access the project to which a job belongs with the ``Job.project`` attribute (#808).

Changed
+++++++
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 = "1.8.0"
version = "2.0.0"
# The full version, including alpha/beta/rc tags.
release = "1.8.0"
release = "2.0.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 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"
version = "1.8.0"
version = "2.0.0"
description = "Manage large and heterogeneous data spaces on the file system."
readme = "README.md"
# Supported versions are determined according to NEP 29.
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.8.0"
__version__ = "2.0.0"

SCHEMA_VERSION = 2

Expand Down

0 comments on commit 6599893

Please sign in to comment.