diff --git a/README.md b/README.md index 9a71b14..0208269 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Developed by *Christian Visintin* -Current Version: **1.1.1 (26/10/2019)** +Current Version: **1.1.2 (29/10/2019)** - [ATtila](#attila) - [Introduction](#introduction) @@ -323,6 +323,10 @@ nosetests -v --with-coverage --cover-tests --cover-package=attila --nocapture te ## Changelog +### ATtila 1.1.2 (29/10/2019) + +* Fixed broken windows installation + ### ATtila 1.1.1 (26/10/2019) - Didn't deploy virtual. diff --git a/attila/__init__.py b/attila/__init__.py index d02c063..870bfb6 100644 --- a/attila/__init__.py +++ b/attila/__init__.py @@ -21,4 +21,4 @@ # # Version of the ATtila package -__version__ = "1.1.1" +__version__ = "1.1.2" diff --git a/setup.py b/setup.py index 02af57b..9a785d2 100644 --- a/setup.py +++ b/setup.py @@ -7,11 +7,11 @@ # The directory containing this file ROOT = Path(__file__).parent -README = (ROOT / "README.md").read_text() +README = (ROOT / "README.md").read_text(encoding="utf-8") setup( name='attila', - version='1.1.1', + version='1.1.2', description='Python module to communicate easily with modems and RF modules using AT commands', long_description=README, long_description_content_type="text/markdown",