diff --git a/.github/workflows/deploy-pypi.yml b/.github/workflows/deploy-pypi.yml index d5e3a52..afd24bb 100644 --- a/.github/workflows/deploy-pypi.yml +++ b/.github/workflows/deploy-pypi.yml @@ -25,7 +25,7 @@ jobs: cd bindings/python python -m build - - uses: pypa/gh-action-pypi-publish@master + - uses: pypa/gh-action-pypi-publish@v1.12.2 if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') with: user: __token__ diff --git a/CMakeLists.txt b/CMakeLists.txt index bdcb1f9..f0cc5f6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.13.4) project( genalyzer - VERSION 0.1 + VERSION 0.1.1 LANGUAGES CXX C) set(BUILD_SHARED_LIBS diff --git a/bindings/python/genalyzer/__init__.py b/bindings/python/genalyzer/__init__.py index ae18fc6..96d18a9 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.1" +__version__ = "0.1.1" __author__ = "Analog Devices, Inc." diff --git a/bindings/python/pyproject.toml b/bindings/python/pyproject.toml index bde6d5a..796a058 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.1" +version = "0.1.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 909f0f6..e223c98 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.1" +release = "v0.1.1" # -- General configuration --------------------------------------------------- diff --git a/tasks.py b/tasks.py index 93c1a64..99c055f 100644 --- a/tasks.py +++ b/tasks.py @@ -38,11 +38,12 @@ 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, seconds + line = ' '*s+'version = "{}.{}.{}.dev.{}"\n'.format( + major, minor, rev, seconds ) - ver_string = "{}.{}.dev.{}".format(major, minor, seconds) + ver_string = "{}.{}.{}.dev.{}".format(major, minor, rev, seconds) print(line, end="") print(f"Version bumped to {ver_string}")