Skip to content

Commit

Permalink
Release/2.2.0 (#984)
Browse files Browse the repository at this point in the history
* Update changelog

* Bump up to version 2.2.0.

* Run pre-commit.

---------

Co-authored-by: Joshua A. Anderson <joaander@umich.edu>
  • Loading branch information
cbkerr and joaander authored Feb 14, 2024
1 parent 2d6db63 commit 44759c5
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -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}.
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: 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
Expand Down
9 changes: 4 additions & 5 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,21 @@ The **signac** package follows `semantic versioning <https://semver.org/>`_.
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
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
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 = "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.
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__ = "2.1.0"
__version__ = "2.2.0"

SCHEMA_VERSION = 2

Expand Down

0 comments on commit 44759c5

Please sign in to comment.