From 45ddd92a8b46102be35423eb5f596a59e57a3e0c Mon Sep 17 00:00:00 2001
From: Lucas Heitzmann Gabrielli <heitzmann@gmail.com>
Date: Fri, 29 Jun 2018 13:21:48 -0300
Subject: [PATCH] Fix version info

---
 README.md         | 2 +-
 gdspy/__init__.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index e9f9332..5f33259 100644
--- a/README.md
+++ b/README.md
@@ -59,7 +59,7 @@ Help support gdspy development by [donating via PayPal](https://www.paypal.com/c
 
 ## History of changes
 
-### Upcoming
+### Version 1.3.1 (Jun 29, 2018)
 * `PolygonSet` becomes the base class for all polygons, in particular `Polygon` and `Rectangle`.
 * Added `Cell.remove_polygons` and `Cell.remove_labels` functions to allow filtering a cell contents based, for example, on each element's layer.
 * Added `PolygonSet.scale` utility method.
diff --git a/gdspy/__init__.py b/gdspy/__init__.py
index 62897a7..cfd7426 100644
--- a/gdspy/__init__.py
+++ b/gdspy/__init__.py
@@ -55,7 +55,7 @@
         category=ImportWarning,
         stacklevel=2)
 
-__version__ = '1.2.1'
+__version__ = '1.3.1'
 
 _halfpi = 0.5 * numpy.pi
 _directions_dict = {'+x': 0, '+y': 0.5, '-x': 1, '-y': -0.5}