From b9b8f79ec2fd3283cff12639bc32c7d39411c38c Mon Sep 17 00:00:00 2001 From: EnricoMiccoli Date: Tue, 30 Mar 2021 15:42:39 +0200 Subject: [PATCH] Bump version --- README.md | 2 +- nodal/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 863f44a..9dc6a99 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ The numerical work is done by the [numpy](https://www.numpy.org/) package. For l ## Installation To get the stable release [download it](https://github.com/EnricoMiccoli/nodal/releases/latest) and run ``` -$ pip install nodal-1.2.0.whl +$ pip install nodal-1.3.0.whl ``` To try out the latest developments use [`flit`](https://github.com/takluyver/flit) instead: diff --git a/nodal/__init__.py b/nodal/__init__.py index 94c712d..03cb1db 100644 --- a/nodal/__init__.py +++ b/nodal/__init__.py @@ -1,3 +1,3 @@ """Nodal solves electrical circuits using nodal analysis""" -__version__ = "1.2.0" +__version__ = "1.3.0" from .nodal import *