diff --git a/packaging/deb/debian/changelog b/packaging/deb/debian/changelog index 756d47f1..a1081e48 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 (1.1.1-1) noble; urgency=medium - * Initial release. + * 1.1.1 Release. - -- Ward Nakchbandi Mon, 08 Jul 2024 06:13:24 +0300 \ No newline at end of file + -- Tom Crider Fri, 03 Oct 2024 03:31:24 -0700 diff --git a/packaging/flatpak/org.openwinecomponents.umu.umu-launcher.yml b/packaging/flatpak/org.openwinecomponents.umu.umu-launcher.yml index 95793c36..b53de0fe 100644 --- a/packaging/flatpak/org.openwinecomponents.umu.umu-launcher.yml +++ b/packaging/flatpak/org.openwinecomponents.umu.umu-launcher.yml @@ -360,7 +360,7 @@ modules: sources: - type: git url: https://github.com/Open-Wine-Components/umu-launcher.git - branch: main + tag: 1.1.1 modules: # --- packaging --- - name: packaging diff --git a/packaging/nix/umu-launcher.nix b/packaging/nix/umu-launcher.nix index 5414f44e..fe037966 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 = "1.1.1"; src = umu-launcher; pyproject = false; depsBuildBuild = [ diff --git a/packaging/rpm/umu-launcher.spec b/packaging/rpm/umu-launcher.spec index 52dcacad..c29edeb9 100644 --- a/packaging/rpm/umu-launcher.spec +++ b/packaging/rpm/umu-launcher.spec @@ -1,4 +1,5 @@ -%define commit 9b12f90b4e113275b5e8ea33a88674275bf3a1c8 +%define commit 12ebba1bea5006aaa0493d4d9e5d1ba1fe434ac1 +%define tag 1.1.1 %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global build_timestamp %(date +"%Y%m%d") @@ -6,7 +7,7 @@ %global rel_build 1.%{build_timestamp}.%{shortcommit}%{?dist} Name: umu-launcher -Version: 1.0 +Version: 1.1.1 Release: %{rel_build} Summary: A tool for launching non-steam games with proton @@ -40,7 +41,7 @@ Requires: python3-filelock %prep git clone --single-branch --branch main https://github.com/Open-Wine-Components/umu-launcher.git cd umu-launcher -git checkout %{commit} +git checkout %{tag} git submodule update --init --recursive %build diff --git a/packaging/snap/snap/snapcraft.yaml b/packaging/snap/snap/snapcraft.yaml index 84fefe19..7e9d8323 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: '1.1.1' # You can set this to the appropriate version summary: UMU Launcher description: | UMU Launcher is a tool for managing and launching applications. @@ -171,7 +171,7 @@ parts: umu-run: plugin: dump source: https://github.com/Open-Wine-Components/umu-launcher.git - source-branch: main + source-tag: 1.1.1 build-packages: - git - make diff --git a/umu/__init__.py b/umu/__init__.py index ccaf7173..520d6cb4 100644 --- a/umu/__init__.py +++ b/umu/__init__.py @@ -1 +1 @@ -__version__ = "0.0.1" # noqa: D104 +__version__ = "1.1.1" # noqa: D104