Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated version number #47

Merged
merged 2 commits into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/genalyzer/__init__.py
Original file line number Diff line number Diff line change
@@ -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."


Expand Down
2 changes: 1 addition & 1 deletion bindings/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
9 changes: 4 additions & 5 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
print(f"Version bumped to {ver_string}")
Loading