From 2b2fec85b27e16a94a59cf85bd6ebc8600417f9c Mon Sep 17 00:00:00 2001 From: schutzbot Date: Wed, 17 Jul 2024 08:16:09 +0000 Subject: [PATCH] Post release version bump [skip ci] --- osbuild.spec | 2 +- osbuild/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/osbuild.spec b/osbuild.spec index f7229990..93880b17 100644 --- a/osbuild.spec +++ b/osbuild.spec @@ -1,7 +1,7 @@ %global forgeurl https://github.com/osbuild/osbuild %global selinuxtype targeted -Version: 123 +Version: 124 %forgemeta diff --git a/osbuild/__init__.py b/osbuild/__init__.py index c9363164..a2b2c711 100644 --- a/osbuild/__init__.py +++ b/osbuild/__init__.py @@ -10,7 +10,7 @@ independent of osbuild but used across the osbuild codebase. from .pipeline import Manifest, Pipeline, Stage -__version__ = "123" +__version__ = "124" __all__ = [ "Manifest", diff --git a/setup.py b/setup.py index 26c9f717..d8f5e27a 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import setuptools setuptools.setup( name="osbuild", - version="123", + version="124", description="A build system for OS images", packages=["osbuild", "osbuild.formats", "osbuild.util"], license='Apache-2.0',