From fca1c60080319d0b82a2e49240bcd5fdc6c30097 Mon Sep 17 00:00:00 2001 From: Farfar Date: Fri, 24 Sep 2021 14:09:26 +0200 Subject: [PATCH] Bumped version --- README.md | 2 +- seatconnect/__version__.py | 2 +- setup.py | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7dc23b8..051f5ae 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ![PyPi](https://img.shields.io/pypi/v/seatconnect?label=latest%20pypi) ![Downloads PyPi](https://img.shields.io/pypi/dm/seatconnect) -# Seat Connect v1.1.0 +# Seat Connect v1.1.1 Fork of https://github.com/lendy007/skodaconnect which in turn is a fork of: https://github.com/robinostlund/volkswagencarnet diff --git a/seatconnect/__version__.py b/seatconnect/__version__.py index 6f57163..31a4e4d 100644 --- a/seatconnect/__version__.py +++ b/seatconnect/__version__.py @@ -3,4 +3,4 @@ For more details and documentation, visit the github page at https://github.com/lendy007/skodaconnect """ -__version__ = "1.1.0" +__version__ = "1.1.1" diff --git a/setup.py b/setup.py index 7d983e4..6a34641 100644 --- a/setup.py +++ b/setup.py @@ -2,6 +2,7 @@ # read the contents of your README file from os import path +from seatconnect.__version__ import __version__ as lib_version this_directory = path.abspath(path.dirname(__file__)) with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: long_description = f.read() @@ -11,7 +12,7 @@ def local_scheme(version): setuptools.setup( name='seatconnect', - version='1.0.30', + version=lib_version, description='Communicate with Seat Connect', author='Farfar', author_email='faekie@hotmail.com',