From 20e61846513db923a33b040d59b79c4d8424e153 Mon Sep 17 00:00:00 2001 From: bpuchala Date: Wed, 13 Mar 2024 14:35:53 -0400 Subject: [PATCH] version 2.0a2 --- pyproject.toml | 2 +- python/doc/conf.py | 2 +- python/setup.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 01f7673..069af9e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ build-backend = "setuptools.build_meta" [project] name = "libcasm-composition" -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 ba2e83a..d744e04 100644 --- a/python/doc/conf.py +++ b/python/doc/conf.py @@ -96,7 +96,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 cd17b4d..ed39d86 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 82d34ba..cb0d0d8 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="libcasm-composition", - version="2.0a1", + version="2.0a2", packages=["libcasm", "libcasm.composition"], package_dir={"": "python"}, cmake_install_dir="python/libcasm",