diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 523be27..6ad19fc 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.2.dev0 +current_version = 2.0.2 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 951bbf2..44f9a67 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.2.dev0" +version = "2.0.2" release = version diff --git a/keithley2600/__init__.py b/keithley2600/__init__.py index aa38098..fab3a76 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.2.dev0" +__version__ = "v2.0.2" diff --git a/setup.py b/setup.py index 8deba00..0234f5f 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="keithley2600", - version="v2.0.2.dev0", + version="v2.0.2", description="Full Python driver for the Keithley 2600 series.", url="https://github.com/OE-FET/keithley2600.git", author="Sam Schott",