Skip to content
This repository was archived by the owner on Aug 9, 2024. It is now read-only.

Commit c0473ce

Browse files
committed
Release v1.6.11
1 parent 7170215 commit c0473ce

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

Diff for: README.md

+4
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@ Help support Gdspy development by [donating via PayPal](https://www.paypal.com/c
7373

7474
## History of changes
7575

76+
### Version 1.6.11 (Jan 14, 2022)
77+
* Fix in `Cell.write_svg` when missing references.
78+
* Speed improvements in `Cell.remove_polygons` (thanks Troy for the contribution).
79+
7680
### Version 1.6.10 (Nov 14, 2021)
7781
* Fix in `Cell.get_polygons`
7882

Diff for: gdspy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
- http://www.buchanan1.net/stream_description.html
2020
"""
2121

22-
__version__ = "1.6.10"
22+
__version__ = "1.6.11"
2323

2424
import warnings
2525

Diff for: tools/release.sh

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ if ! grep "### Version $CURR_VER (" README.md > /dev/null 2>&1; then
1313
exit 1
1414
fi
1515

16+
git status
1617
echo "Release version $CURR_VER [y/n]?"
1718
echo "This will commit and tag all changes, but will NOT add them."
1819
read -r GOON

0 commit comments

Comments
 (0)