From 5e2e55f39d152e4b379d669beccea046d07dad22 Mon Sep 17 00:00:00 2001 From: Karel van Klink Date: Wed, 21 Aug 2024 13:56:31 +0200 Subject: [PATCH] Bump version number to 1.0.3 --- .bumpversion.cfg | 2 +- Dockerfile.example | 2 +- lso/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 28d67a7..09080e0 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.2 +current_version = 1.0.3 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(rc(?P\d+))? diff --git a/Dockerfile.example b/Dockerfile.example index 285047d..182a20c 100644 --- a/Dockerfile.example +++ b/Dockerfile.example @@ -11,7 +11,7 @@ COPY ./ansible-galaxy-requirements.yaml ./ansible-galaxy-requirements.yaml RUN apk add --update --no-cache gcc libc-dev libffi-dev openssh # Install the LSO python package, and additional requirements -RUN pip install orchestrator-lso=="1.0.2" +RUN pip install orchestrator-lso=="1.0.3" RUN pip install -r requirements.txt # Install required Ansible Galaxy roles and collections diff --git a/lso/__init__.py b/lso/__init__.py index da3c56e..e8af032 100644 --- a/lso/__init__.py +++ b/lso/__init__.py @@ -13,7 +13,7 @@ """LSO, an API for remotely running Ansible playbooks.""" -__version__ = "1.0.2" +__version__ = "1.0.3" import logging