From d6b5aa6403de88d3b8e46e97a56947aa237ccf22 Mon Sep 17 00:00:00 2001 From: Simon Adorf Date: Wed, 12 Jul 2023 18:54:15 +0200 Subject: [PATCH] Release/2.1.0 (#939) * Update changelog for 2.1.0. * Bump up to version 2.1.0. --- .bumpversion.cfg | 2 +- CITATION.cff | 2 +- changelog.txt | 2 +- doc/conf.py | 4 ++-- pyproject.toml | 2 +- signac/version.py | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 544ae6584..6a49cb125 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.0 +current_version = 2.1.0 commit = True tag = False message = Bump up to version {new_version}. diff --git a/CITATION.cff b/CITATION.cff index 8698fa352..e772a4d13 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -2,7 +2,7 @@ --- cff-version: "1.0.3" title: signac -version: 2.0.0 +version: 2.1.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 diff --git a/changelog.txt b/changelog.txt index 538d837bd..34db5be53 100644 --- a/changelog.txt +++ b/changelog.txt @@ -7,7 +7,7 @@ The **signac** package follows `semantic versioning `_. Version 2 ========= -[2.1.0] -- 2023-XX-XX +[2.1.0] -- 2023-07-12 --------------------- Changed diff --git a/doc/conf.py b/doc/conf.py index b5c393b32..55373f147 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -59,9 +59,9 @@ # built documents. # # The short X.Y version. -version = "2.0.0" +version = "2.1.0" # The full version, including alpha/beta/rc tags. -release = "2.0.0" +release = "2.1.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyproject.toml b/pyproject.toml index daacdc0b6..c0ad8e1f3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ requires = ["setuptools>=64.0.0"] [project] name = "signac" -version = "2.0.0" +version = "2.1.0" description = "Manage large and heterogeneous data spaces on the file system." readme = "README.md" # Supported versions are determined according to NEP 29. diff --git a/signac/version.py b/signac/version.py index 6682519da..dc2f3302b 100644 --- a/signac/version.py +++ b/signac/version.py @@ -4,7 +4,7 @@ """Define signac version.""" -__version__ = "2.0.0" +__version__ = "2.1.0" SCHEMA_VERSION = 2