diff --git a/CMakeLists.txt b/CMakeLists.txt index 9831f55..bdcb1f9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.13.4) project( genalyzer - VERSION 0.0.1 + VERSION 0.1 LANGUAGES CXX C) set(BUILD_SHARED_LIBS diff --git a/bindings/python/genalyzer/__init__.py b/bindings/python/genalyzer/__init__.py index 11ca7f2..ae18fc6 100644 --- a/bindings/python/genalyzer/__init__.py +++ b/bindings/python/genalyzer/__init__.py @@ -1,7 +1,7 @@ """Python bindings for Genalyzer""" # Version of the genalyzer bindings (which may be different than the library version) -__version__ = "0.0.1" +__version__ = "0.1" __author__ = "Analog Devices, Inc." diff --git a/bindings/python/pyproject.toml b/bindings/python/pyproject.toml index ace5547..5300b2a 100644 --- a/bindings/python/pyproject.toml +++ b/bindings/python/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "genalyzer" -version = "0.0.1" +version = "0.1" dynamic = ["readme"] description = "Python bindings for genalyzer converter analysis library" license = {text = "ADI BSD"} diff --git a/doc/conf.py b/doc/conf.py index 417fd78..909f0f6 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -27,7 +27,7 @@ author = "Analog Devices, Inc." # The full version, including alpha/beta/rc tags -release = "v0.0.1" +release = "v0.1" # -- General configuration --------------------------------------------------- diff --git a/tasks.py b/tasks.py index cf7ede1..93c1a64 100644 --- a/tasks.py +++ b/tasks.py @@ -38,12 +38,11 @@ def bumpversion_test(c, filename=None): l = l.split(".") major = int(l[0]) minor = int(l[1]) - rev = int(l[2]) seconds = int(time.time()) - line = ' '*s+'version = "{}.{}.{}.dev.{}"\n'.format( - major, minor, rev, seconds + line = ' '*s+'version = "{}.{}.dev.{}"\n'.format( + major, minor, seconds ) - ver_string = "{}.{}.{}.dev.{}".format(major, minor, rev, seconds) + ver_string = "{}.{}.dev.{}".format(major, minor, seconds) print(line, end="") - print(f"Version bumped to {ver_string}") \ No newline at end of file + print(f"Version bumped to {ver_string}")