From c9111840e1774cc809d0bd81f17e591c6d89744a Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Thu, 5 Sep 2024 04:16:48 -0700 Subject: [PATCH] Bump version to 0.1.0 --- packaging/deb/debian/changelog | 4 ++-- packaging/nix/umu-launcher.nix | 2 +- packaging/rpm/umu-launcher.spec | 2 +- packaging/snap/snap/snapcraft.yaml | 2 +- umu/__init__.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/packaging/deb/debian/changelog b/packaging/deb/debian/changelog index 756d47f1..bca788af 100644 --- a/packaging/deb/debian/changelog +++ b/packaging/deb/debian/changelog @@ -1,5 +1,5 @@ -umu-launcher (1.0-1) noble; urgency=medium +umu-launcher (0.1.0-1) noble; urgency=medium * Initial release. - -- Ward Nakchbandi Mon, 08 Jul 2024 06:13:24 +0300 \ No newline at end of file + -- Ward Nakchbandi Mon, 08 Jul 2024 06:13:24 +0300 diff --git a/packaging/nix/umu-launcher.nix b/packaging/nix/umu-launcher.nix index 5414f44e..c48c9a26 100644 --- a/packaging/nix/umu-launcher.nix +++ b/packaging/nix/umu-launcher.nix @@ -1,7 +1,7 @@ {pyth1 ,python3Packages , umu-launcher, pkgs, ...}: python3Packages.buildPythonPackage { name = "umu-launcher"; - version = "0.1"; + version = "0.1.0"; src = umu-launcher; pyproject = false; depsBuildBuild = [ diff --git a/packaging/rpm/umu-launcher.spec b/packaging/rpm/umu-launcher.spec index 52dcacad..2d72fe89 100644 --- a/packaging/rpm/umu-launcher.spec +++ b/packaging/rpm/umu-launcher.spec @@ -6,7 +6,7 @@ %global rel_build 1.%{build_timestamp}.%{shortcommit}%{?dist} Name: umu-launcher -Version: 1.0 +Version: 0.1.0 Release: %{rel_build} Summary: A tool for launching non-steam games with proton diff --git a/packaging/snap/snap/snapcraft.yaml b/packaging/snap/snap/snapcraft.yaml index 84fefe19..a5400824 100644 --- a/packaging/snap/snap/snapcraft.yaml +++ b/packaging/snap/snap/snapcraft.yaml @@ -1,5 +1,5 @@ name: umu-launcher -version: '1.0' # You can set this to the appropriate version +version: '0.1.0' # You can set this to the appropriate version summary: UMU Launcher description: | UMU Launcher is a tool for managing and launching applications. diff --git a/umu/__init__.py b/umu/__init__.py index ccaf7173..28804008 100644 --- a/umu/__init__.py +++ b/umu/__init__.py @@ -1 +1 @@ -__version__ = "0.0.1" # noqa: D104 +__version__ = "0.1.0" # noqa: D104