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

Commit d50bc82

Browse files
committed
Release v1.4.2
1 parent cd0334e commit d50bc82

File tree

5 files changed

+6
-3
lines changed

5 files changed

+6
-3
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ Help support gdspy development by [donating via PayPal](https://www.paypal.com/c
6060

6161
## History of changes
6262

63+
### Version 1.4.2 (Oct 01, 2019)
64+
* Bug fix in `FlexPath`.
65+
6366
### Version 1.4.1 (Sep 20, 2019)
6467
* Bug fixes (thanks to DerekK88 and Sequencer for the patches).
6568

docs/_static/fonts.gds

0 Bytes
Binary file not shown.

docs/_static/photonics.gds

0 Bytes
Binary file not shown.

gdspy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
stacklevel=2,
6363
)
6464

65-
__version__ = "1.4.1"
65+
__version__ = "1.4.2"
6666

6767
_halfpi = 0.5 * numpy.pi
6868
_zero = numpy.array((0.0, 0.0))

tools/release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ echo "Release version $CURR_VER [y/n]?"
1717
read -r GOON
1818

1919
if [ "$GOON" = 'y' ] ; then
20-
#git commit -m "Release v$CURR_VER"
21-
#git tag -am "Release v$CURR_VER" "v$CURR_VER"
20+
git commit -m "Release v$CURR_VER"
21+
git tag -am "Release v$CURR_VER" "v$CURR_VER"
2222
echo "Review the status and 'git push' to finish release"
2323
fi

0 commit comments

Comments
 (0)