From 3f4da3e78f50520914a5f8c3b5ed546470688fd8 Mon Sep 17 00:00:00 2001 From: bpuchala Date: Tue, 7 Nov 2023 22:04:52 -0500 Subject: [PATCH] version 2.0a6 --- CHANGELOG.md | 9 +++++++++ pyproject.toml | 2 +- python/doc/conf.py | 2 +- python/setup.py | 2 +- setup.py | 2 +- 5 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 272d63f..94b856b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ 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.0a6] - 2023-11-07 + +### Changed + +- Allow integer array parameters to be either C or F ordered numpy arrays. +- Added Lattice to CASM::xtal::SymInfo to avoid bad pointers in Coordinate members +- Changed Prim.lattice and Structure.lattice docs to specify that the lattice is returned as a copy. + + ## [2.0a5] - 2023-10-25 ### Added diff --git a/pyproject.toml b/pyproject.toml index 831177b..d8d0ec6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ build-backend = "setuptools.build_meta" [project] name = "libcasm-xtal" -version = "2.0a5" +version = "2.0a6" authors = [ { name="CASM developers", email="casm-developers@lists.engr.ucsb.edu" }, ] diff --git a/python/doc/conf.py b/python/doc/conf.py index 96928b9..828663a 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.0a5" +release = "2.0a6" # 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 00339d3..feb5e26 100644 --- a/python/setup.py +++ b/python/setup.py @@ -1,6 +1,6 @@ import os -__version__ = "2.0a5" +__version__ = "2.0a6" # 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 eaa4f5b..b514faf 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="libcasm-xtal", - version="2.0a5", + version="2.0a6", packages=["libcasm", "libcasm.xtal"], package_dir={"": "python"}, cmake_install_dir="python/libcasm",