diff --git a/MANIFEST b/MANIFEST index 0a5e220..9472e1b 100644 --- a/MANIFEST +++ b/MANIFEST @@ -40,6 +40,7 @@ docs/_build/html/_static/websupport.js gdspy/__init__.py gdspy/boolext.c gdspy/clipper.cpp +gdspy/clipper.hpp gdspy/viewer.py gdspy/data/00.xbm gdspy/data/01.xbm diff --git a/MANIFEST.in b/MANIFEST.in index 2e44b71..f4abbb5 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,3 +2,4 @@ recursive-include docs/_build/html * include *.txt include gdspy-sample.* include LICENSE +include gdspy/clipper.hpp diff --git a/README.md b/README.md index 08321b4..aa14a4e 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Help support Gdspy development by [donating via PayPal](https://www.paypal.com/c ## History of changes -### Version 0.8 (May 6, 2016) +### Version 0.8.1 (May 6, 2016) * New `fast_boolean` function based on the [Clipper](http://www.angusj.com/delphi/clipper.php) library with much better performance than the old `boolean`. * Changed `offset` signature to also use the [Clipper](http://www.angusj.com/delphi/clipper.php) library (this change **breaks compatibility** with previous versions). * Bug fix for error when importing some labels from GDSII files. diff --git a/gdspy/__init__.py b/gdspy/__init__.py index 9358f07..4378b21 100644 --- a/gdspy/__init__.py +++ b/gdspy/__init__.py @@ -31,7 +31,7 @@ from gdspy import clipper from gdspy.viewer import LayoutViewer -__version__ = '0.8.0' +__version__ = '0.8.1' __doc__ = """ gdspy is a Python module that allows the creation of GDSII stream files. diff --git a/setup.py b/setup.py index 14a51d3..e0a0db5 100755 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ def run(self): if os.path.isfile(f + 'pyc'): os.unlink(f + 'pyc') setup(name='gdspy', - version='0.8', + version='0.8.1', author='Lucas Heitzmann Gabrielli', author_email='heitzmann@gmail.com', license='GNU General Public License (GPL)',