From 5abf2f656a45b70191cb29ac9eb39000b8c14cfc Mon Sep 17 00:00:00 2001 From: Will Foster Date: Mon, 25 May 2026 16:45:29 +0100 Subject: [PATCH] fix: update rel to 0.1.15 [publish] --- rpm/quads-lib.spec | 2 +- setup.py | 2 +- src/quads_lib/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rpm/quads-lib.spec b/rpm/quads-lib.spec index b8c87c9..f6c9a4d 100644 --- a/rpm/quads-lib.spec +++ b/rpm/quads-lib.spec @@ -12,7 +12,7 @@ %define name quads-lib %define reponame python-quads-lib %define branch development -%define version 0.1.14 +%define version 0.1.15 %define build_timestamp %{lua: print(os.date("%Y%m%d"))} Summary: Python client library for interacting with the QUADS API diff --git a/setup.py b/setup.py index 8e0d588..8196c03 100755 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ def read(*names, **kwargs): setup( name="quads-lib", - version="0.1.14", + version="0.1.15", license="LGPL-3.0-only", description="Python client library for interacting with the QUADS API", long_description="{}\n{}".format( diff --git a/src/quads_lib/__init__.py b/src/quads_lib/__init__.py index b22daeb..9e04bab 100644 --- a/src/quads_lib/__init__.py +++ b/src/quads_lib/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.1.14" +__version__ = "0.1.15" from .quads import QuadsApi