diff --git a/CHANGELOG.md b/CHANGELOG.md index 7683e73f..b9a3e93d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.9.58 - 2024-11-25 +### Changed +- Empty paths now give a warning when being converted to polygons or stored in GDSII/OASIS. +### Fixed +- Missing paths when vertices were separated exactly by the tolerance (#277) + ## 0.9.57 - 2024-11-07 ### Fixed - Bug when removing GDSII properties (#276, thanks jatoben). diff --git a/include/gdstk/gdstk.hpp b/include/gdstk/gdstk.hpp index bdf74eff..d212faab 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.57" +#define GDSTK_VERSION "0.9.58" // 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 e569f9f1..732e5e70 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "scikit_build_core.build" [project] name = "gdstk" -version = "0.9.57" +version = "0.9.58" authors = [{name = "Lucas H. Gabrielli", email = "heitzmann@gmail.com"}] description = "Python module for creation and manipulation of GDSII files." readme = "README.md"