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

Commit

Permalink
Build fixes for header file
Browse files Browse the repository at this point in the history
  • Loading branch information
heitzmann committed May 6, 2016
1 parent 6f124a0 commit 4820ca3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ recursive-include docs/_build/html *
include *.txt
include gdspy-sample.*
include LICENSE
include gdspy/clipper.hpp
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion gdspy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
license='GNU General Public License (GPL)',
Expand Down

0 comments on commit 4820ca3

Please sign in to comment.