diff --git a/docs/conf.py b/docs/conf.py index 5c6d829..3bb07eb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,7 +64,7 @@ # built documents. # # The short X.Y version. -version = '1.1.1' +version = '1.1.2' # The full version, including alpha/beta/rc tags. release = version diff --git a/periphery/__init__.py b/periphery/__init__.py index 747cdae..9df36f3 100644 --- a/periphery/__init__.py +++ b/periphery/__init__.py @@ -1,9 +1,9 @@ import time -__version__ = "1.1.1" +__version__ = "1.1.2" "Module version string." -version = (1, 1, 1) +version = (1, 1, 2) "Module version tuple." diff --git a/setup.py b/setup.py index b2ad04e..954c3b8 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='python-periphery', - version='1.1.1', + version='1.1.2', 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',