From 44ef7a0d39d3634c22c8b4f30d431f597d008a89 Mon Sep 17 00:00:00 2001 From: Guillaume Fraux Date: Thu, 22 May 2025 14:37:04 +0200 Subject: [PATCH] Release featomic-torch v0.7.0 --- featomic-torch/CHANGELOG.md | 5 +++++ featomic-torch/VERSION | 2 +- featomic-torch/tests/cmake-project/CMakeLists.txt | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/featomic-torch/CHANGELOG.md b/featomic-torch/CHANGELOG.md index 5d7b066b2..850d3de8b 100644 --- a/featomic-torch/CHANGELOG.md +++ b/featomic-torch/CHANGELOG.md @@ -17,6 +17,11 @@ a changelog](https://keepachangelog.com/en/1.1.0/) format. This project follows ### Removed --> +## [Version 0.7.0](https://github.com/metatensor/featomic/releases/tag/featomic-torch-v0.7.0) - 2025-05-22 + +- featomic-torch now integrates with [metatomic-torch](https://github.com/metatensor/metatomic) + instead of metatensor-torch atomistic models. + ## [Version 0.6.2](https://github.com/metatensor/featomic/releases/tag/featomic-torch-v0.6.2) - 2025-05-21 - Add Support for PyTorch 2.7, removed support for PyTorch 2.0 and older. diff --git a/featomic-torch/VERSION b/featomic-torch/VERSION index b61604874..faef31a43 100644 --- a/featomic-torch/VERSION +++ b/featomic-torch/VERSION @@ -1 +1 @@ -0.6.2 +0.7.0 diff --git a/featomic-torch/tests/cmake-project/CMakeLists.txt b/featomic-torch/tests/cmake-project/CMakeLists.txt index 1dc8ba3dd..964947797 100644 --- a/featomic-torch/tests/cmake-project/CMakeLists.txt +++ b/featomic-torch/tests/cmake-project/CMakeLists.txt @@ -6,7 +6,7 @@ project(featomic-torch-test-cmake-project CXX) # We need to update the REQUIRED_FEATOMIC_VERSION in the same way we update the # featomic version for dev builds include(../../cmake/dev-versions.cmake) -set(REQUIRED_FEATOMIC_TORCH_VERSION "0.6.2") +set(REQUIRED_FEATOMIC_TORCH_VERSION "0.7.0") create_development_version("${REQUIRED_FEATOMIC_TORCH_VERSION}" FEATOMIC_TORCH_FULL_VERSION "featomic-torch-v") string(REGEX REPLACE "([0-9]*)\\.([0-9]*).*" "\\1.\\2" REQUIRED_FEATOMIC_TORCH_VERSION ${FEATOMIC_TORCH_FULL_VERSION}) find_package(featomic_torch ${REQUIRED_FEATOMIC_TORCH_VERSION} REQUIRED)