Skip to content

Commit 223cd9e

Browse files
Merge pull request #266 from R1kaB3rN/bump-version-1.1.4
Bump version 1.1.4
2 parents 9035246 + d361721 commit 223cd9e

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

.github/workflows/build-umu-debian-12.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: apt install -y dh-make dpkg-dev
3030

3131
- name: Setup dh_make quilt files
32-
run: LOGNAME=root dh_make --createorig -y -l -p umu-launcher_1.1.3 || true
32+
run: LOGNAME=root dh_make --createorig -y -l -p umu-launcher_1.1.4 || true
3333

3434
- name: Install apt build dependencies
3535
run: apt build-dep -y ./

.github/workflows/build-umu-ubuntu-noble.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: apt install -y dh-make dpkg-dev
3030

3131
- name: Setup dh_make quilt files
32-
run: LOGNAME=root dh_make --createorig -y -l -p umu-launcher_1.1.3 || true
32+
run: LOGNAME=root dh_make --createorig -y -l -p umu-launcher_1.1.4 || true
3333

3434
- name: Install apt build dependencies
3535
run: apt build-dep -y ./

packaging/deb/debian/changelog

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
umu-launcher (1.1.3-1) noble; urgency=medium
1+
umu-launcher (1.1.4-1) noble; urgency=medium
22

3-
* 1.1.3 Release.
3+
* 1.1.4 Release.
44

55
-- Tom Crider <[email protected]> Sat, 12 Oct 2024 05:49:24 -0700

packaging/deb/ubuntu/changelog

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
umu-launcher (1.1.3-1) noble; urgency=medium
1+
umu-launcher (1.1.4-1) noble; urgency=medium
22

3-
* 1.1.3 Release.
3+
* 1.1.4 Release.
44

55
-- Tom Crider <[email protected]> Sat, 12 Oct 2024 05:49:24 -0700

packaging/flatpak/org.openwinecomponents.umu.umu-launcher.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ modules:
356356
sources:
357357
- type: git
358358
url: https://github.com/Open-Wine-Components/umu-launcher.git
359-
tag: 1.1.3
359+
tag: 1.1.4
360360
modules:
361361
# --- packaging ---
362362
- name: packaging

packaging/nix/flake.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
in
1616
let
1717
pyth = nixpk.pkgs.python3;
18-
version = "1.1.3";
18+
version = "1.1.4";
1919
in
2020
let
2121
umu-launcher = nixpk.callPackage ./umu-launcher.nix { umu-launcher=umu-launcher-src; pyth1=pyth; version = "${version}"; };

packaging/rpm/umu-launcher.spec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Define the manual commit as a fallback
2-
%define manual_commit 8bc37bba224cd59cf446bfd470720fb548ecde20
2+
%define manual_commit 70645c290dfc6ed10282bf4d2ae38c0bf7b1a3fb
33

44
# Optionally define the tag
5-
%define tag 1.1.3
5+
%define tag 1.1.4
66
# Check if tag is defined and get the commit hash for the tag, otherwise use manual commit
77
%{!?tag: %global commit %{manual_commit}}
88
%{?tag: %global commit %(git rev-list -n 1 %{tag} 2>/dev/null || echo %{manual_commit})}
@@ -14,7 +14,7 @@
1414
%global rel_build 1.%{build_timestamp}.%{shortcommit}%{?dist}
1515

1616
Name: umu-launcher
17-
Version: 1.1.3
17+
Version: 1.1.4
1818
Release: %{rel_build}
1919
Summary: A tool for launching non-steam games with proton
2020

packaging/snap/snap/snapcraft.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: umu-launcher
2-
version: '1.1.3' # You can set this to the appropriate version
2+
version: '1.1.4' # You can set this to the appropriate version
33
summary: UMU Launcher
44
description: |
55
UMU Launcher is a tool for managing and launching applications.
@@ -171,7 +171,7 @@ parts:
171171
umu-run:
172172
plugin: dump
173173
source: https://github.com/Open-Wine-Components/umu-launcher.git
174-
source-tag: 1.1.3
174+
source-tag: 1.1.4
175175
build-packages:
176176
- git
177177
- make

umu/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.1.3" # noqa: D104
1+
__version__ = "1.1.4" # noqa: D104

0 commit comments

Comments
 (0)