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
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,33 @@
# Change Log


## v2.1.3 (2025/04/16)

- Update version to be compatible with kim-api v2.4.1


## v2.1.2 (2025/03/20)

- Update version to be compatible with kim-api v2.4.0


## v2.1.1 (2023/12/17)

### Bug Fixes 🐛
* Use kim-api in publish by @mjwen in https://github.com/openkim/kimpy/pull/22
* Fix publish actions by @mjwen in https://github.com/openkim/kimpy/pull/23

### Enhancements 🛠
* Use conda-forge kim-api for GH testing by @mjwen in https://github.com/openkim/kimpy/pull/20


## v2.1.0 (2022/12/06)

- Fixing inverse function bug in neighbor list, which can result in incorrect
padding
- Using pyproject.toml, and refactoring build and test requires


## v2.0.1 (2022/08/18)

- Include generated binding and testing file in the repo, instead of generating
Expand All @@ -14,6 +36,7 @@
- Drop python3.6 support
- Update to be compatible with kim-api-2.3.0


## v2.0.0 (2021/04/26)

This release is not backward compatible.
Expand All @@ -31,6 +54,7 @@ This release is not backward compatible.
of the NeighList object and calls its methods.
- Find example usage at kimpy/examples/


## v0.3.3 (2019/10/28)

- Update setup.py to not explicitly use `pip` and `python`
Expand Down
1 change: 1 addition & 0 deletions api_compatibility.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@
2.1.0 2.3.0 2.2.1
2.1.1 2.3.0 2.2.1
2.1.2 2.4.0 2.2.1
2.1.3 2.4.1 2.2.1
2 changes: 1 addition & 1 deletion kimpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "2.1.2"
__version__ = "2.1.3"

# import all modules
from . import model
Expand Down
Loading