Skip to content

Commit

Permalink
Merge pull request #266 from R1kaB3rN/bump-version-1.1.4
Browse files Browse the repository at this point in the history
Bump version 1.1.4
GloriousEggroll authored Nov 13, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents 9035246 + d361721 commit 223cd9e
Showing 9 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-umu-debian-12.yml
Original file line number Diff line number Diff line change
@@ -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 ./
2 changes: 1 addition & 1 deletion .github/workflows/build-umu-ubuntu-noble.yml
Original file line number Diff line number Diff line change
@@ -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 ./
4 changes: 2 additions & 2 deletions packaging/deb/debian/changelog
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> Sat, 12 Oct 2024 05:49:24 -0700
4 changes: 2 additions & 2 deletions packaging/deb/ubuntu/changelog
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> Sat, 12 Oct 2024 05:49:24 -0700
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion packaging/nix/flake.nix
Original file line number Diff line number Diff line change
@@ -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}"; };
6 changes: 3 additions & 3 deletions packaging/rpm/umu-launcher.spec
Original file line number Diff line number Diff line change
@@ -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

4 changes: 2 additions & 2 deletions packaging/snap/snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion umu/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.1.3" # noqa: D104
__version__ = "1.1.4" # noqa: D104

0 comments on commit 223cd9e

Please sign in to comment.