diff --git a/CHANGELOG.md b/CHANGELOG.md index 46a0804..1e8a3d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ 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.0a2] - 2023-09-28 + +### Fixed + +- Fixed calculation of homogeneous mode space when some sites do not include a local DoF + + ## [2.0a1] - 2023-08-20 This release separates out casm/clexulator from CASM v1. It creates a Python package, libcasm.clexulator, that enables using casm/clexulator and may be installed via pip install, using scikit-build, CMake, and pybind11. This release also includes usage and API documentation for using libcasm.clexulator, built using Sphinx. diff --git a/pyproject.toml b/pyproject.toml index d958ae9..c675c35 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ build-backend = "setuptools.build_meta" [project] name = "libcasm-clexulator" -version = "2.0a1" +version = "2.0a2" authors = [ { name="CASM developers", email="casm-developers@lists.engr.ucsb.edu" }, ] diff --git a/python/doc/conf.py b/python/doc/conf.py index 3eec2ad..6de3378 100644 --- a/python/doc/conf.py +++ b/python/doc/conf.py @@ -97,7 +97,7 @@ # The short X.Y version. version = "2.0" # The full version, including alpha/beta/rc tags. -release = "2.0a1" +release = "2.0a2" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/python/setup.py b/python/setup.py index bd49922..ed4e52a 100644 --- a/python/setup.py +++ b/python/setup.py @@ -1,6 +1,6 @@ import os -__version__ = "2.0a1" +__version__ = "2.0a2" # 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 eea5b26..00694ce 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="libcasm-clexulator", - version="2.0a1", + version="2.0a2", packages=["libcasm", "libcasm.clexulator"], package_dir={"": "python"}, cmake_install_dir="python/libcasm",