diff --git a/CHANGELOG.md b/CHANGELOG.md index 0849a3b4..554c8764 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,13 @@ # Changelog -## Unreleased +## 0.9.53 - 2024-07-04 ### Added -- Support for Raith MBMS path data (thanks Matthew Mckee) +- Support for Raith MBMS path data (thanks Matthew Mckee). +- Support for numpy 2.0 +### Changed +- Dropped support for python 3.8 +### Fixed +- Qhull maximal number of points. ## 0.9.52 - 2024-04-18 ### Fixed diff --git a/include/gdstk/gdstk.hpp b/include/gdstk/gdstk.hpp index adc6289b..6fc5daa0 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.52" +#define GDSTK_VERSION "0.9.53" // 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 8eb84e33..e4bb1c42 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "scikit_build_core.build" [project] name = "gdstk" -version = "0.9.52" +version = "0.9.53" authors = [{name = "Lucas H. Gabrielli", email = "heitzmann@gmail.com"}] description = "Python module for creation and manipulation of GDSII files." readme = "README.md"