From 3dd2af2f02f01b6e67ba4d770277da58edcc1a60 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Mon, 1 Jul 2019 10:04:56 -0700 Subject: [PATCH] Adds a link from the readme to the changes.md file --- README.md | 4 ++++ pycalculix/geometry.py | 2 +- pycalculix/version.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) 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"