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

Commit 2f98a9a

Browse files
committed
Release v1.5
1 parent 464bb58 commit 2f98a9a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Help support gdspy development by [donating via PayPal](https://www.paypal.com/c
6969

7070
## History of changes
7171

72-
### Upcoming on version 1.5
72+
### Version 1.5 (Dec 20, 2019)
7373
* New `Cell.write_svg` function to export an SVG image of the cell.
7474
* New `GdsLibrary.new_cell` function to quickly create and add cells to a library.
7575
* `GdsLibrary.add` can update references when a cell is overwritten.

gdspy/__init__.py

Lines changed: 1 addition & 1 deletion
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.4.3"
22+
__version__ = "1.5"
2323

2424
import warnings
2525

tools/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if [ "$LAST_VER" = "v$CURR_VER" ]; then
88
exit 1
99
fi
1010

11-
if ! grep "### Version $CURR_VER" README.md > /dev/null 2>&1; then
11+
if ! grep "### Version $CURR_VER (" README.md > /dev/null 2>&1; then
1212
echo "Version $CURR_VER not found in the release notes of README.md"
1313
exit 1
1414
fi

0 commit comments

Comments
 (0)