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

Commit

Permalink
Version 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
heitzmann committed Oct 21, 2017
1 parent 31865c8 commit 266d168
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,20 +44,19 @@ The preferred option is to install pre-compiled binaries from [here](https://git

Installation via `pip` and building from source as above are also possible, but an appropriate [build environment](https://wiki.python.org/moin/WindowsCompilers) is required for compilation of the C extension modules.

## Usage
## Documentation

The file [tutorial.py](https://github.com/heitzmann/gdspy/blob/master/examples/tutorial.py) in the `example` folder is a sample script to show the features provided by this module.
The complete [documentation](http://gdspy.readthedocs.io/en/latest/) can be built from the sources in the `docs` folder with [Sphinx](http://sphinx-doc.org/).

The complete module reference can be built from the sources in the `docs` folder with [Sphinx](http://sphinx-doc.org/).
It is also available [on-line](http://gdspy.readthedocs.io/en/latest/)
The file [tutorial.py](https://github.com/heitzmann/gdspy/blob/master/examples/tutorial.py) in the `example` folder is a sample script to show the features provided by this module.

## Support

Help support gdspy development by [donating via PayPal](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=JD2EUE2WPPBQQ)

## History of changes

### Next
### Version 1.2 (Oct 21, 2017)
* Added new `gdsii_hash` function.
* Added `precision` parameter to `_chop`, `Polygon.fracture`, `Polygon.fillet`, `PolygonSet.fracture`, `PolygonSet.fillet`, and `slice`.
* Included labels in flatten operations (added `get_labels` to `Cell`, `CellReference`, and `CellArray`).
Expand Down
2 changes: 1 addition & 1 deletion gdspy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
category=ImportWarning,
stacklevel=2)

__version__ = '1.1.2'
__version__ = '1.2'

_halfpi = 0.5 * numpy.pi
_directions_dict = {'+x': 0, '+y': 0.5, '-x': 1, '-y': -0.5}
Expand Down

0 comments on commit 266d168

Please sign in to comment.