diff --git a/featomic-torch/CMakeLists.txt b/featomic-torch/CMakeLists.txt index 448de13e0..d8195b08d 100644 --- a/featomic-torch/CMakeLists.txt +++ b/featomic-torch/CMakeLists.txt @@ -81,7 +81,7 @@ function(check_compatible_versions _dependency_ _actual_ _requested_) endfunction() -set(REQUIRED_FEATOMIC_VERSION "0.6.1") +set(REQUIRED_FEATOMIC_VERSION "0.6.2") if (NOT "$ENV{FEATOMIC_NO_LOCAL_DEPS}" STREQUAL "1") # If building a dev version, we also need to update the # REQUIRED_FEATOMIC_VERSION in the same way we update the diff --git a/featomic/CHANGELOG.md b/featomic/CHANGELOG.md index 737dc678a..a034ced6d 100644 --- a/featomic/CHANGELOG.md +++ b/featomic/CHANGELOG.md @@ -17,6 +17,12 @@ a changelog](https://keepachangelog.com/en/1.1.0/) format. This project follows ### Removed --> +## [Version 0.6.2](https://github.com/metatensor/featomic/releases/tag/featomic-v0.6.2) - 2025-09-17 + +### Changed + +- Updated to metatensor v0.1.17, which should bring faster `Labels` creation + ## [Version 0.6.1](https://github.com/metatensor/featomic/releases/tag/featomic-v0.6.1) - 2025-02-21 ### Fixed @@ -33,7 +39,7 @@ a changelog](https://keepachangelog.com/en/1.1.0/) format. This project follows ## [Version 0.6.0](https://github.com/metatensor/featomic/releases/tag/featomic-v0.6.0) - 2024-12-20 ### Added - + - Multiple atomistic features calculators with a native implementation: - SOAP spherical expansion, radial spectrum, power spectrum and spherical expansion for pairs of atoms; diff --git a/featomic/Cargo.toml b/featomic/Cargo.toml index 2d7a57a2f..5ac9ce0f2 100644 --- a/featomic/Cargo.toml +++ b/featomic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "featomic" -version = "0.6.1" +version = "0.6.2" authors = ["Guillaume Fraux "] edition = "2021" rust-version = "1.74" diff --git a/featomic/tests/cmake-project/CMakeLists.txt b/featomic/tests/cmake-project/CMakeLists.txt index 20a1ff01d..865a62b6a 100644 --- a/featomic/tests/cmake-project/CMakeLists.txt +++ b/featomic/tests/cmake-project/CMakeLists.txt @@ -5,7 +5,7 @@ project(featomic-test-cmake-project C 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_VERSION "0.6.1") +set(REQUIRED_FEATOMIC_VERSION "0.6.2") create_development_version("${REQUIRED_FEATOMIC_VERSION}" FEATOMIC_FULL_VERSION "featomic-v") string(REGEX REPLACE "([0-9]*)\\.([0-9]*).*" "\\1.\\2" REQUIRED_FEATOMIC_VERSION ${FEATOMIC_FULL_VERSION}) find_package(featomic ${REQUIRED_FEATOMIC_VERSION} REQUIRED) diff --git a/python/scripts/rustc-manylinux2014_aarch64/Dockerfile b/python/scripts/rustc-manylinux2014_aarch64/Dockerfile index 8802232dd..63b4928e5 100644 --- a/python/scripts/rustc-manylinux2014_aarch64/Dockerfile +++ b/python/scripts/rustc-manylinux2014_aarch64/Dockerfile @@ -5,7 +5,7 @@ RUN yum install git -y RUN git config --global --add safe.directory /code # Download rustup-init and install -RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal --default-toolchain 1.86 +RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal --default-toolchain 1.89 ENV PATH="/root/.cargo/bin:${PATH}" ENV RUST_BUILD_TARGET="aarch64-unknown-linux-gnu" diff --git a/python/scripts/rustc-manylinux2014_x86_64/Dockerfile b/python/scripts/rustc-manylinux2014_x86_64/Dockerfile index c759cdd47..e90e070b7 100644 --- a/python/scripts/rustc-manylinux2014_x86_64/Dockerfile +++ b/python/scripts/rustc-manylinux2014_x86_64/Dockerfile @@ -5,7 +5,7 @@ RUN yum install git -y RUN git config --global --add safe.directory /code # Download rustup-init and install -RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal --default-toolchain 1.86 +RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal --default-toolchain 1.89 ENV PATH="/root/.cargo/bin:${PATH}" ENV RUST_BUILD_TARGET="x86_64-unknown-linux-gnu" diff --git a/python/scripts/rustc-manylinux_2_28_aarch64/Dockerfile b/python/scripts/rustc-manylinux_2_28_aarch64/Dockerfile index 0821ccbfd..651dd00cd 100644 --- a/python/scripts/rustc-manylinux_2_28_aarch64/Dockerfile +++ b/python/scripts/rustc-manylinux_2_28_aarch64/Dockerfile @@ -5,7 +5,7 @@ RUN yum install git -y RUN git config --global --add safe.directory /code # Download rustup-init asn install -RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal --default-toolchain 1.86 +RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal --default-toolchain 1.89 ENV PATH="/root/.cargo/bin:${PATH}" ENV RUST_BUILD_TARGET="aarch64-unknown-linux-gnu" diff --git a/python/scripts/rustc-manylinux_2_28_x86_64/Dockerfile b/python/scripts/rustc-manylinux_2_28_x86_64/Dockerfile index 126142f47..a3391ec7f 100644 --- a/python/scripts/rustc-manylinux_2_28_x86_64/Dockerfile +++ b/python/scripts/rustc-manylinux_2_28_x86_64/Dockerfile @@ -5,7 +5,7 @@ RUN yum install git -y RUN git config --global --add safe.directory /code # Download rustup-init asn install -RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal --default-toolchain 1.86 +RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal --default-toolchain 1.89 ENV PATH="/root/.cargo/bin:${PATH}" ENV RUST_BUILD_TARGET="x86_64-unknown-linux-gnu"