diff --git a/.github/workflows/build-umu-debian-12.yml b/.github/workflows/build-umu-debian-12.yml index 9878d9f0f..f9bda111b 100644 --- a/.github/workflows/build-umu-debian-12.yml +++ b/.github/workflows/build-umu-debian-12.yml @@ -29,7 +29,7 @@ jobs: run: apt install -y dh-make dpkg-dev - name: Setup dh_make quilt files - run: LOGNAME=root dh_make --createorig -y -l -p umu-launcher_1.1.3 || true + run: LOGNAME=root dh_make --createorig -y -l -p umu-launcher_1.1.4 || true - name: Install apt build dependencies run: apt build-dep -y ./ diff --git a/.github/workflows/build-umu-ubuntu-noble.yml b/.github/workflows/build-umu-ubuntu-noble.yml index bab37e21b..fd882f20b 100644 --- a/.github/workflows/build-umu-ubuntu-noble.yml +++ b/.github/workflows/build-umu-ubuntu-noble.yml @@ -29,7 +29,7 @@ jobs: run: apt install -y dh-make dpkg-dev - name: Setup dh_make quilt files - run: LOGNAME=root dh_make --createorig -y -l -p umu-launcher_1.1.3 || true + run: LOGNAME=root dh_make --createorig -y -l -p umu-launcher_1.1.4 || true - name: Install apt build dependencies run: apt build-dep -y ./ diff --git a/packaging/deb/debian/changelog b/packaging/deb/debian/changelog index 3cd586e21..f4b2266a2 100644 --- a/packaging/deb/debian/changelog +++ b/packaging/deb/debian/changelog @@ -1,5 +1,5 @@ -umu-launcher (1.1.3-1) noble; urgency=medium +umu-launcher (1.1.4-1) noble; urgency=medium - * 1.1.3 Release. + * 1.1.4 Release. -- Tom Crider Sat, 12 Oct 2024 05:49:24 -0700 diff --git a/packaging/deb/ubuntu/changelog b/packaging/deb/ubuntu/changelog index 3cd586e21..f4b2266a2 100644 --- a/packaging/deb/ubuntu/changelog +++ b/packaging/deb/ubuntu/changelog @@ -1,5 +1,5 @@ -umu-launcher (1.1.3-1) noble; urgency=medium +umu-launcher (1.1.4-1) noble; urgency=medium - * 1.1.3 Release. + * 1.1.4 Release. -- Tom Crider Sat, 12 Oct 2024 05:49:24 -0700 diff --git a/packaging/flatpak/org.openwinecomponents.umu.umu-launcher.yml b/packaging/flatpak/org.openwinecomponents.umu.umu-launcher.yml index 9d64e3090..103256852 100644 --- a/packaging/flatpak/org.openwinecomponents.umu.umu-launcher.yml +++ b/packaging/flatpak/org.openwinecomponents.umu.umu-launcher.yml @@ -356,7 +356,7 @@ modules: sources: - type: git url: https://github.com/Open-Wine-Components/umu-launcher.git - tag: 1.1.3 + tag: 1.1.4 modules: # --- packaging --- - name: packaging diff --git a/packaging/nix/flake.nix b/packaging/nix/flake.nix index 8dc27e3bf..00a2def5c 100644 --- a/packaging/nix/flake.nix +++ b/packaging/nix/flake.nix @@ -15,7 +15,7 @@ in let pyth = nixpk.pkgs.python3; - version = "1.1.3"; + version = "1.1.4"; in let umu-launcher = nixpk.callPackage ./umu-launcher.nix { umu-launcher=umu-launcher-src; pyth1=pyth; version = "${version}"; }; diff --git a/packaging/rpm/umu-launcher.spec b/packaging/rpm/umu-launcher.spec index 570a79894..fd9943ee7 100644 --- a/packaging/rpm/umu-launcher.spec +++ b/packaging/rpm/umu-launcher.spec @@ -1,8 +1,8 @@ # Define the manual commit as a fallback -%define manual_commit 8bc37bba224cd59cf446bfd470720fb548ecde20 +%define manual_commit 70645c290dfc6ed10282bf4d2ae38c0bf7b1a3fb # Optionally define the tag -%define tag 1.1.3 +%define tag 1.1.4 # Check if tag is defined and get the commit hash for the tag, otherwise use manual commit %{!?tag: %global commit %{manual_commit}} %{?tag: %global commit %(git rev-list -n 1 %{tag} 2>/dev/null || echo %{manual_commit})} @@ -14,7 +14,7 @@ %global rel_build 1.%{build_timestamp}.%{shortcommit}%{?dist} Name: umu-launcher -Version: 1.1.3 +Version: 1.1.4 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 dfe828d0e..f21911682 100644 --- a/packaging/snap/snap/snapcraft.yaml +++ b/packaging/snap/snap/snapcraft.yaml @@ -1,5 +1,5 @@ name: umu-launcher -version: '1.1.3' # You can set this to the appropriate version +version: '1.1.4' # 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-tag: 1.1.3 + source-tag: 1.1.4 build-packages: - git - make diff --git a/umu/__init__.py b/umu/__init__.py index fb6bc1d26..337496369 100644 --- a/umu/__init__.py +++ b/umu/__init__.py @@ -1 +1 @@ -__version__ = "1.1.3" # noqa: D104 +__version__ = "1.1.4" # noqa: D104