From d18d636b1c2b45259b826e9a2ef170ece6ad0ee8 Mon Sep 17 00:00:00 2001 From: Sam Schott Date: Fri, 27 Nov 2020 13:34:35 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.0.1.dev0=20=E2=86=92=202.0.?= =?UTF-8?q?1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- docs/conf.py | 2 +- keithley2600/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4c4de0a..5e986fc 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.1.dev0 +current_version = 2.0.1 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+)(?P\d+))? diff --git a/docs/conf.py b/docs/conf.py index 3b33f8d..d33fd96 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,7 +25,7 @@ project = "keithley2600" copyright = "2019, Sam Schott" author = "Sam Schott" -version = "2.0.1.dev0" +version = "2.0.1" release = version diff --git a/keithley2600/__init__.py b/keithley2600/__init__.py index 5f980d8..f91b258 100644 --- a/keithley2600/__init__.py +++ b/keithley2600/__init__.py @@ -28,4 +28,4 @@ from keithley2600.keithley_driver import log_to_screen, KeithleyIOError -__version__ = "v2.0.1.dev0" +__version__ = "v2.0.1" diff --git a/setup.py b/setup.py index 0ec8e3b..1f5a06d 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="keithley2600", - version="v2.0.1.dev0", + version="v2.0.1", description="Full Python driver for the Keithley 2600 series.", url="https://github.com/OE-FET/keithley2600.git", author="Sam Schott",