Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# v2.2.1
* DevOps: Fix readthedocs configuration, update pre-commit configuration and transfer repo to the materialscloud-org organization

# v2.2.0
* DevOps: Replaced `setup.py` by `pyproject.toml`, updated README and fixed CI [710fd75](https://github.com/giovannipizzi/seekpath/commit/710fd7542a307adef3a18154860b298131284499)
* DevOps: Update CI and pre-commit (e.g., black to ruff, enable prospector again) [9ca3dd9](https://github.com/giovannipizzi/seekpath/commit/9ca3dd9cd9f10735db49b05b0ba468ab2558c792)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ license = {text = "The MIT license"}

[project.urls]
Homepage = "https://github.com/materialscloud-org/seekpath"
Downloads = "https://github.com/materialscloud-org/seekpath/archive/v2.2.0.tar.gz"
Downloads = "https://github.com/materialscloud-org/seekpath/archive/v2.2.1.tar.gz"

[project.optional-dependencies]
bz = [
Expand Down
2 changes: 1 addition & 1 deletion seekpath/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Licence: MIT License, see LICENSE.txt file
"""

__version__ = '2.2.0'
__version__ = '2.2.1'
Copy link

Copilot AI Jan 31, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The CHANGELOG.md file should be updated to include an entry for v2.2.1. The repository maintains a CHANGELOG.md file with entries for all previous releases (v2.2.0, v2.1.0, v2.0.0, v1.x), but there is no entry for this new version. Please add a section at the top of CHANGELOG.md describing what changes are included in this release.

Suggested change
__version__ = '2.2.1'
__version__ = '2.2.0'

Copilot uses AI. Check for mistakes.
__author__ = 'Giovanni Pizzi, PSI'
__maintainer__ = 'Timo Reents, PSI'
__copyright__ = (
Expand Down