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

## [Version 0.1.8](https://github.com/metatensor/metatomic/releases/tag/metatomic-torch-v0.1.8) - 2026-02-02

### Added

- Added the ability for models to request extra inputs from the simulation
engine, on top of positions/cell/types. These extra inputs are requested by
the model and stored on the system by the engine (like for neighbor lists).
They are provided as TensorMap, stored in the system's data, and follow the
same metadata structure as the standard outputs (anything that can be an output can also be an input).
- Added support for `charges`, `masses`, `velocities` as standard model inputs
and outputs
- Added support for PyTorch v2.10

### Changed

- Properties in standard output/inputs should now consistently use singular
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.7
0.1.8
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.7")
set(REQUIRED_METATOMIC_TORCH_VERSION "0.1.8")
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
Loading