From 4d98f7d08f10b046e6e0dc5dba72b221315f62cb Mon Sep 17 00:00:00 2001 From: "Vanya A. Sergeev" Date: Mon, 28 Oct 2019 21:57:14 -0500 Subject: [PATCH] update version to v2.0.0 --- 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 89b6b4c..66eaa74 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -21,7 +21,7 @@ author = u'Vanya A. Sergeev' # The short X.Y version. -version = '1.1.2' +version = '2.0.0' # The full version, including alpha/beta/rc tags. release = version diff --git a/periphery/__init__.py b/periphery/__init__.py index a27a363..55b6eeb 100644 --- a/periphery/__init__.py +++ b/periphery/__init__.py @@ -1,9 +1,9 @@ import time -__version__ = "1.1.2" +__version__ = "2.0.0" "Module version string." -version = (1, 1, 2) +version = (2, 0, 0) "Module version tuple." diff --git a/setup.py b/setup.py index 954c3b8..4a1120f 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='python-periphery', - version='1.1.2', + version='2.0.0', 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',