diff --git a/.github/workflows/build-umu-debian-12.yml b/.github/workflows/build-umu-debian-12.yml index f9bda111b..f7782d7ad 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.4 || true + run: LOGNAME=root dh_make --createorig -y -l -p umu-launcher_1.2.0 || 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 fd882f20b..402db68c6 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.4 || true + run: LOGNAME=root dh_make --createorig -y -l -p umu-launcher_1.2.0 || true - name: Install apt build dependencies run: apt build-dep -y ./ diff --git a/packaging/deb/debian/changelog b/packaging/deb/debian/changelog index f4b2266a2..786841680 100644 --- a/packaging/deb/debian/changelog +++ b/packaging/deb/debian/changelog @@ -1,5 +1,5 @@ -umu-launcher (1.1.4-1) noble; urgency=medium +umu-launcher (1.2.0-1) noble; urgency=medium - * 1.1.4 Release. + * 1.2.0 Release. -- Tom Crider Sat, 12 Oct 2024 05:49:24 -0700 diff --git a/packaging/deb/ubuntu/changelog b/packaging/deb/ubuntu/changelog index f4b2266a2..786841680 100644 --- a/packaging/deb/ubuntu/changelog +++ b/packaging/deb/ubuntu/changelog @@ -1,5 +1,5 @@ -umu-launcher (1.1.4-1) noble; urgency=medium +umu-launcher (1.2.0-1) noble; urgency=medium - * 1.1.4 Release. + * 1.2.0 Release. -- Tom Crider Sat, 12 Oct 2024 05:49:24 -0700 diff --git a/packaging/nix/flake.nix b/packaging/nix/flake.nix index 9e38194cd..084891454 100644 --- a/packaging/nix/flake.nix +++ b/packaging/nix/flake.nix @@ -15,7 +15,7 @@ in let pyth = nixpk.pkgs.python3; - version = "1.1.4"; + version = "1.2.0"; 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 fd9943ee7..e94f36ed3 100644 --- a/packaging/rpm/umu-launcher.spec +++ b/packaging/rpm/umu-launcher.spec @@ -2,7 +2,7 @@ %define manual_commit 70645c290dfc6ed10282bf4d2ae38c0bf7b1a3fb # Optionally define the tag -%define tag 1.1.4 +%define tag 1.2.0 # 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.4 +Version: 1.2.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 f21911682..20ea6fbb4 100644 --- a/packaging/snap/snap/snapcraft.yaml +++ b/packaging/snap/snap/snapcraft.yaml @@ -1,5 +1,5 @@ name: umu-launcher -version: '1.1.4' # You can set this to the appropriate version +version: "1.2.0" # 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.4 + source-tag: 1.2.0 build-packages: - git - make diff --git a/umu/__init__.py b/umu/__init__.py index e99a85ccd..612f5bb53 100644 --- a/umu/__init__.py +++ b/umu/__init__.py @@ -1,3 +1,3 @@ -__version__ = "1.1.4" # noqa: D104 +__version__ = "1.2.0" # noqa: D104 __runtime_versions__ = (("sniper", "steamrt3"), ("soldier", "steamrt2")) __runtime_version__ = __runtime_versions__[0]