From c0473ce3a34d0462be8e6275f8f164ed14e8d059 Mon Sep 17 00:00:00 2001 From: Lucas Heitzmann Gabrielli Date: Fri, 14 Jan 2022 06:03:18 -0300 Subject: [PATCH] Release v1.6.11 --- README.md | 4 ++++ gdspy/__init__.py | 2 +- tools/release.sh | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d970912..3be98a1 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,10 @@ Help support Gdspy development by [donating via PayPal](https://www.paypal.com/c ## History of changes +### Version 1.6.11 (Jan 14, 2022) +* Fix in `Cell.write_svg` when missing references. +* Speed improvements in `Cell.remove_polygons` (thanks Troy for the contribution). + ### Version 1.6.10 (Nov 14, 2021) * Fix in `Cell.get_polygons` diff --git a/gdspy/__init__.py b/gdspy/__init__.py index 6d3aa7a..ca564c1 100644 --- a/gdspy/__init__.py +++ b/gdspy/__init__.py @@ -19,7 +19,7 @@ - http://www.buchanan1.net/stream_description.html """ -__version__ = "1.6.10" +__version__ = "1.6.11" import warnings diff --git a/tools/release.sh b/tools/release.sh index 03bf1ce..cefeded 100755 --- a/tools/release.sh +++ b/tools/release.sh @@ -13,6 +13,7 @@ if ! grep "### Version $CURR_VER (" README.md > /dev/null 2>&1; then exit 1 fi +git status echo "Release version $CURR_VER [y/n]?" echo "This will commit and tag all changes, but will NOT add them." read -r GOON