Skip to content

Commit b9c9b8f

Browse files
Release 1.1.1
1 parent af6ca5b commit b9c9b8f

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
lines changed

packaging/deb/debian/changelog

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
umu-launcher (1.0-1) noble; urgency=medium
1+
umu-launcher (1.1.1-1) noble; urgency=medium
22

3-
* Initial release.
3+
* 1.1.1 Release.
44

5-
-- Ward Nakchbandi <hotrod.master@hotmail.com> Mon, 08 Jul 2024 06:13:24 +0300
5+
-- Tom Crider <tcrider84@gmail.com> Fri, 03 Oct 2024 03:31:24 -0700

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ modules:
360360
sources:
361361
- type: git
362362
url: https://github.com/Open-Wine-Components/umu-launcher.git
363-
branch: main
363+
tag: 1.1.1
364364
modules:
365365
# --- packaging ---
366366
- name: packaging

packaging/nix/umu-launcher.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{pyth1 ,python3Packages , umu-launcher, pkgs, ...}:
22
python3Packages.buildPythonPackage {
33
name = "umu-launcher";
4-
version = "0.1";
4+
version = "1.1.1";
55
src = umu-launcher;
66
pyproject = false;
77
depsBuildBuild = [

packaging/rpm/umu-launcher.spec

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
%define commit 9b12f90b4e113275b5e8ea33a88674275bf3a1c8
1+
%define commit 12ebba1bea5006aaa0493d4d9e5d1ba1fe434ac1
2+
%define tag 1.1.1
23
%global shortcommit %(c=%{commit}; echo ${c:0:7})
34

45
%global build_timestamp %(date +"%Y%m%d")
56

67
%global rel_build 1.%{build_timestamp}.%{shortcommit}%{?dist}
78

89
Name: umu-launcher
9-
Version: 1.0
10+
Version: 1.1.1
1011
Release: %{rel_build}
1112
Summary: A tool for launching non-steam games with proton
1213

@@ -40,7 +41,7 @@ Requires: python3-filelock
4041
%prep
4142
git clone --single-branch --branch main https://github.com/Open-Wine-Components/umu-launcher.git
4243
cd umu-launcher
43-
git checkout %{commit}
44+
git checkout %{tag}
4445
git submodule update --init --recursive
4546

4647
%build

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.0' # You can set this to the appropriate version
2+
version: '1.1.1' # 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-branch: main
174+
source-tag: 1.1.1
175175
build-packages:
176176
- git
177177
- make

umu/__init__.py

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

0 commit comments

Comments
 (0)