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

Commit 266d168

Browse files
committed
Version 1.2
1 parent 31865c8 commit 266d168

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,20 +44,19 @@ The preferred option is to install pre-compiled binaries from [here](https://git
4444

4545
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.
4646

47-
## Usage
47+
## Documentation
4848

49-
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.
49+
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/).
5050

51-
The complete module reference can be built from the sources in the `docs` folder with [Sphinx](http://sphinx-doc.org/).
52-
It is also available [on-line](http://gdspy.readthedocs.io/en/latest/)
51+
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.
5352

5453
## Support
5554

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

5857
## History of changes
5958

60-
### Next
59+
### Version 1.2 (Oct 21, 2017)
6160
* Added new `gdsii_hash` function.
6261
* Added `precision` parameter to `_chop`, `Polygon.fracture`, `Polygon.fillet`, `PolygonSet.fracture`, `PolygonSet.fillet`, and `slice`.
6362
* Included labels in flatten operations (added `get_labels` to `Cell`, `CellReference`, and `CellArray`).

gdspy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
category=ImportWarning,
6060
stacklevel=2)
6161

62-
__version__ = '1.1.2'
62+
__version__ = '1.2'
6363

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

0 commit comments

Comments
 (0)