Skip to content

Commit 335cc98

Browse files
committed
Release featomic v0.6.1
1 parent be91711 commit 335cc98

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

featomic-torch/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ function(check_compatible_versions _dependency_ _actual_ _requested_)
8080
endfunction()
8181

8282

83-
set(REQUIRED_FEATOMIC_VERSION "0.6.0")
83+
set(REQUIRED_FEATOMIC_VERSION "0.6.1")
8484
if (NOT "$ENV{FEATOMIC_NO_LOCAL_DEPS}" STREQUAL "1")
8585
# If building a dev version, we also need to update the
8686
# REQUIRED_FEATOMIC_VERSION in the same way we update the

featomic/CHANGELOG.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,23 @@ a changelog](https://keepachangelog.com/en/1.1.0/) format. This project follows
1717
### Removed
1818
-->
1919

20+
## [Version 0.6.1](https://github.com/metatensor/featomic/releases/tag/featomic-v0.6.1) - 2025-02-21
21+
2022
### Fixed
21-
- Fixed `featomic.clebsch_gordan.cartesian_to_spherical` transformation for tensors of rank greater than 2 (#371)
22-
- Fixed the calculation of Clebsch-Gordan coefficients, used all across the `featomic.clebsch_gordan` module (#371)
23+
- Fixed `featomic.clebsch_gordan.cartesian_to_spherical` transformation for tensors of
24+
rank greater than 2
25+
- Fixed the calculation of Clebsch-Gordan coefficients, used all across the
26+
`featomic.clebsch_gordan` module
2327

2428
### Added
2529

26-
- `clebsch_gordan.EquivariantPowerSpectrumByPair` calculator for two-center equivariant
27-
descriptors. Similar API to `clebsch_gordan.EquivariantPowerSpectrum` (#378)
30+
- `clebsch_gordan.EquivariantPowerSpectrumByPair` calculator for two-center equivariant
31+
descriptors. Similar API to `clebsch_gordan.EquivariantPowerSpectrum`
2832

2933
## [Version 0.6.0](https://github.com/metatensor/featomic/releases/tag/featomic-v0.6.0) - 2024-12-20
3034

3135
### Added
32-
36+
3337
- Multiple atomistic features calculators with a native implementation:
3438
- SOAP spherical expansion, radial spectrum, power spectrum and spherical
3539
expansion for pairs of atoms;

featomic/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "featomic"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
authors = ["Guillaume Fraux <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.74"

featomic/tests/cmake-project/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ project(featomic-test-cmake-project C CXX)
55
# We need to update the REQUIRED_FEATOMIC_VERSION in the same way we update the
66
# featomic version for dev builds
77
include(../../cmake/dev-versions.cmake)
8-
set(REQUIRED_FEATOMIC_VERSION "0.6.0")
8+
set(REQUIRED_FEATOMIC_VERSION "0.6.1")
99
create_development_version("${REQUIRED_FEATOMIC_VERSION}" FEATOMIC_FULL_VERSION "featomic-v")
1010
string(REGEX REPLACE "([0-9]*)\\.([0-9]*).*" "\\1.\\2" REQUIRED_FEATOMIC_VERSION ${FEATOMIC_FULL_VERSION})
1111
find_package(featomic ${REQUIRED_FEATOMIC_VERSION} REQUIRED)

0 commit comments

Comments
 (0)