diff --git a/README.md b/README.md index ead65a3..78bd7e8 100644 --- a/README.md +++ b/README.md @@ -227,4 +227,8 @@ See LICENSE.txt (Apache 2.0) Justin Black, justin.a.black[at-sign]gmail[dot]com Initial Release: December 2014 + +## Changes +[See the change log](CHANGES.md) + ![Analytics](https://ga-beacon.appspot.com/UA-97855011-1/pycalculix_github?pixel) diff --git a/pycalculix/geometry.py b/pycalculix/geometry.py index 52d3756..0947ae2 100644 --- a/pycalculix/geometry.py +++ b/pycalculix/geometry.py @@ -644,7 +644,7 @@ def intersects(self, other): return None elif isinstance(other, Arc) or isinstance(other, SignArc): # arc line intersection - return other.instersects(self) + return other.intersects(self) def __str__(self): """Returns string listing object type, name, and points""" diff --git a/pycalculix/version.py b/pycalculix/version.py index 72f26f5..0b2f79d 100644 --- a/pycalculix/version.py +++ b/pycalculix/version.py @@ -1 +1 @@ -__version__ = "1.1.2" +__version__ = "1.1.3"