From ff4d535691a1747a76962a3d077d96d224308611 Mon Sep 17 00:00:00 2001 From: "Vanya A. Sergeev" Date: Tue, 3 Apr 2018 23:58:21 -0500 Subject: [PATCH] update version to v1.1.1 --- docs/conf.py | 2 +- periphery/__init__.py | 4 ++-- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 0c359be..5c6d829 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,7 +64,7 @@ # built documents. # # The short X.Y version. -version = '1.1.0' +version = '1.1.1' # The full version, including alpha/beta/rc tags. release = version diff --git a/periphery/__init__.py b/periphery/__init__.py index da8d657..747cdae 100644 --- a/periphery/__init__.py +++ b/periphery/__init__.py @@ -1,9 +1,9 @@ import time -__version__ = "1.1.0" +__version__ = "1.1.1" "Module version string." -version = (1, 1, 0) +version = (1, 1, 1) "Module version tuple." diff --git a/setup.py b/setup.py index 53c0749..b2ad04e 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='python-periphery', - version='1.1.0', + version='1.1.1', description='A pure Python 2/3 library for peripheral I/O (GPIO, LED, PWM, SPI, I2C, MMIO, Serial) in Linux.', author='vsergeev', author_email='v@sergeev.io',