diff --git a/CHANGELOG.md b/CHANGELOG.md index efd5db9..9328768 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.0a7] - 2024-12-11 + +### Fixed + +- Fixed `calc_local_correlations` arguments and docs + +### Changed + +- Build macos x86_64 wheels with macos-13 Github Actions runner + + ## [2.0a6] - 2024-07-26 ### Fixed diff --git a/pyproject.toml b/pyproject.toml index 8f0c9ee..faf75b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ build-backend = "setuptools.build_meta" [project] name = "libcasm-clexulator" -version = "2.0a6" +version = "2.0a7" authors = [ { name="CASM developers", email="casm-developers@lists.engr.ucsb.edu" }, ] diff --git a/python/doc/conf.py b/python/doc/conf.py index 4fc5e6c..85eebbd 100644 --- a/python/doc/conf.py +++ b/python/doc/conf.py @@ -3,7 +3,7 @@ # -- package specific configuration -- project = "libcasm-clexulator" version = "2.0" # The short X.Y version. -release = "2.0a6" # The full version, including alpha/beta/rc tags. +release = "2.0a7" # The full version, including alpha/beta/rc tags. project_desc = "CASM cluster expansion calculator (clexulator) module" logo_text = "libcasm-clexulator" github_url = "https://github.com/prisms-center/CASMcode_clexulator/" diff --git a/python/setup.py b/python/setup.py index 1259c20..294b242 100644 --- a/python/setup.py +++ b/python/setup.py @@ -1,6 +1,6 @@ import os -__version__ = "2.0a6" +__version__ = "2.0a7" # Available at setup time due to pyproject.toml from pybind11.setup_helpers import Pybind11Extension, build_ext diff --git a/setup.py b/setup.py index d17ba2c..95ce2be 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="libcasm-clexulator", - version="2.0a6", + version="2.0a7", packages=["libcasm", "libcasm.clexulator"], package_dir={"": "python"}, cmake_install_dir="python/libcasm",