From ba3b7475eb784b18652cca41e5352d69d609177e Mon Sep 17 00:00:00 2001 From: lan496 Date: Sun, 6 Nov 2022 04:29:57 +0000 Subject: [PATCH] Prepare v2.0.2 --- admin.md | 6 ++++++ doc/releases.md | 5 +++++ src/version.h | 2 +- 3 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 admin.md diff --git a/admin.md b/admin.md new file mode 100644 index 000000000..bda4f4744 --- /dev/null +++ b/admin.md @@ -0,0 +1,6 @@ +# Releasing a new Spglib version + +1. Update +2. Increment version at +3. Push the commit to `rc` branch (Github actions publishes the package to TestPyPI automatically) +4. Push the commit to `master` branch (Github actions publishes the package to PyPI automatically) diff --git a/doc/releases.md b/doc/releases.md index 286bb3443..f42ffebd8 100644 --- a/doc/releases.md +++ b/doc/releases.md @@ -1,6 +1,11 @@ # Summary of releases +## V2.0.2 (6 Nov. 2022) + +- Fix segmentation fault in `spgms_get_symmetry_with_site_tensors` with high symprec [[#195]](https://github.com/spglib/spglib/pull/195) +- Fix possible segmentation fault in `get_magnetic_dataset` with high symprec [[#196]](https://github.com/spglib/spglib/pull/196) + ## V2.0.1 (31 Aug. 2022) - Fix magnetic tolerance for judging type-II MSG (#187) diff --git a/src/version.h b/src/version.h index be19feb9b..8fea69525 100644 --- a/src/version.h +++ b/src/version.h @@ -37,6 +37,6 @@ #define SPGLIB_MAJOR_VERSION 2 #define SPGLIB_MINOR_VERSION 0 -#define SPGLIB_MICRO_VERSION 1 +#define SPGLIB_MICRO_VERSION 2 #endif