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
9 changes: 9 additions & 0 deletions metatomic-torch/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@ a changelog](https://keepachangelog.com/en/1.1.0/) format. This project follows
### Removed
-->

## [Version 0.1.14](https://github.com/metatensor/metatomic/releases/tag/metatomic-torch-v0.1.14) - 2026-05-20

### Fixed

- Allow creating the sphinx documentation classes (when
`METATOMIC_IMPORT_FOR_SPHINX=1` in the environment), so downstream packages
can create instances at the top level and not error when building their
documentation.

## [Version 0.1.13](https://github.com/metatensor/metatomic/releases/tag/metatomic-torch-v0.1.13) - 2026-05-15

### Added
Expand Down
2 changes: 1 addition & 1 deletion metatomic-torch/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.13
0.1.14
2 changes: 1 addition & 1 deletion metatomic-torch/tests/cmake-project/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ else()
# REQUIRED_METATOMIC_TORCH_VERSION in the same way we update the
# metatomic-torch version
include(../../cmake/dev-versions.cmake)
set(REQUIRED_METATOMIC_TORCH_VERSION "0.1.13")
set(REQUIRED_METATOMIC_TORCH_VERSION "0.1.14")
create_development_version("${REQUIRED_METATOMIC_TORCH_VERSION}" METATOMIC_TORCH_FULL_VERSION "metatomic-torch-v")
string(REGEX REPLACE "([0-9]*)\\.([0-9]*).*" "\\1.\\2" REQUIRED_METATOMIC_TORCH_VERSION ${METATOMIC_TORCH_FULL_VERSION})

Expand Down
2 changes: 1 addition & 1 deletion python/metatomic_torch/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ set(METATOMIC_TORCH_SOURCE_DIR "" CACHE PATH "Path to the sources of metatomic-t

file(REMOVE ${CMAKE_INSTALL_PREFIX}/_external.py)

set(REQUIRED_METATOMIC_TORCH_VERSION "0.1.13")
set(REQUIRED_METATOMIC_TORCH_VERSION "0.1.14")
if(${METATOMIC_TORCH_PYTHON_USE_EXTERNAL_LIB})
# when building a source checkout, update version to include git information
# this will not apply when building a sdist
Expand Down
Loading