diff --git a/CHANGELOG.md b/CHANGELOG.md index c50a10c6c..a37a1a33e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.9.52 - 2024-04-18 +### Fixed +- Infinite loop in `Cell::remap_tags` (#246, thanks dtzitkas!) +- Install headers when targeting the C++ library (#245) + ## 0.9.51 - 2024-04-17 ### Changed - Use scikit-build-core for building, which enables support for Python 3.12 on Windows. diff --git a/include/gdstk/gdstk.hpp b/include/gdstk/gdstk.hpp index 0de44ff45..b5c12e0a1 100644 --- a/include/gdstk/gdstk.hpp +++ b/include/gdstk/gdstk.hpp @@ -11,7 +11,7 @@ LICENSE file or #define __STDC_FORMAT_MACROS 1 #define _USE_MATH_DEFINES -#define GDSTK_VERSION "0.9.51" +#define GDSTK_VERSION "0.9.52" // If GDSTK_CUSTOM_ALLOCATOR is defined, the user must supply implementations // for the following dynamic memory management functions: diff --git a/pyproject.toml b/pyproject.toml index 2c5aa964f..4266d0bd2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "scikit_build_core.build" [project] name = "gdstk" -version = "0.9.51" +version = "0.9.52" authors = [{name = "Lucas H. Gabrielli", email = "heitzmann@gmail.com"}] description = "Python module for creation and manipulation of GDSII files." readme = "README.md"