From 44759c50d2e585e802110a5b712bde0b3f6f30ae Mon Sep 17 00:00:00 2001 From: Corwin Kerr Date: Wed, 14 Feb 2024 10:14:36 -0500 Subject: [PATCH] Release/2.2.0 (#984) * Update changelog * Bump up to version 2.2.0. * Run pre-commit. --------- Co-authored-by: Joshua A. Anderson --- .bumpversion.cfg | 2 +- CITATION.cff | 2 +- changelog.txt | 9 ++++----- doc/conf.py | 4 ++-- pyproject.toml | 2 +- signac/version.py | 2 +- 6 files changed, 10 insertions(+), 11 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6a49cb125..eb23af7a6 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.1.0 +current_version = 2.2.0 commit = True tag = False message = Bump up to version {new_version}. diff --git a/CITATION.cff b/CITATION.cff index 78c7c5966..784574edd 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -2,7 +2,7 @@ --- cff-version: "1.0.3" title: signac -version: 2.1.0 +version: 2.2.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 d9403b8cb..c014fdce8 100644 --- a/changelog.txt +++ b/changelog.txt @@ -7,22 +7,21 @@ The **signac** package follows `semantic versioning `_. Version 2 ========= -[2.2.0] -- 2024-xx-xx +[2.2.0] -- 2024-02-13 --------------------- Added +++++ - Official support for Python 3.12 (#957). - - ``Job.cached_statepoint`` - cached and read only access to job state points. Faster than - ``Job.statepoint`` (#975). + - ``Job.cached_statepoint`` - cached and read only access to job state points. Faster than ``Job.statepoint`` (#975). Changed +++++++ - Restrict allowable tar file features in Python 3.12 (#957). - - linked views now can contain spaces and other characters except directory separators (#926). - - linked views now can be created on Windows, if 'Developer mode' is enabled (#430). + - Linked views now can contain spaces and other characters except directory separators (#926). + - Linked views now can be created on Windows, if 'Developer mode' is enabled (#430, #958). - Increase performance for many usage patterns (#975). Fixed diff --git a/doc/conf.py b/doc/conf.py index 55373f147..0c3bdd1f7 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -59,9 +59,9 @@ # built documents. # # The short X.Y version. -version = "2.1.0" +version = "2.2.0" # The full version, including alpha/beta/rc tags. -release = "2.1.0" +release = "2.2.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 a63f04e29..f751d66db 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ requires = ["setuptools>=64.0.0"] [project] name = "signac" -version = "2.1.0" +version = "2.2.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 dc2f3302b..3373f902e 100644 --- a/signac/version.py +++ b/signac/version.py @@ -4,7 +4,7 @@ """Define signac version.""" -__version__ = "2.1.0" +__version__ = "2.2.0" SCHEMA_VERSION = 2