Skip to content

Commit

Permalink
Release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
GloriousEggroll committed Oct 4, 2024
1 parent af6ca5b commit b9c9b8f
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
6 changes: 3 additions & 3 deletions packaging/deb/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
umu-launcher (1.0-1) noble; urgency=medium
umu-launcher (1.1.1-1) noble; urgency=medium

* Initial release.
* 1.1.1 Release.

-- Ward Nakchbandi <hotrod.master@hotmail.com> Mon, 08 Jul 2024 06:13:24 +0300
-- Tom Crider <tcrider84@gmail.com> Fri, 03 Oct 2024 03:31:24 -0700
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ modules:
sources:
- type: git
url: https://github.com/Open-Wine-Components/umu-launcher.git
branch: main
tag: 1.1.1
modules:
# --- packaging ---
- name: packaging
Expand Down
2 changes: 1 addition & 1 deletion packaging/nix/umu-launcher.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{pyth1 ,python3Packages , umu-launcher, pkgs, ...}:
python3Packages.buildPythonPackage {
name = "umu-launcher";
version = "0.1";
version = "1.1.1";
src = umu-launcher;
pyproject = false;
depsBuildBuild = [
Expand Down
7 changes: 4 additions & 3 deletions packaging/rpm/umu-launcher.spec
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
%define commit 9b12f90b4e113275b5e8ea33a88674275bf3a1c8
%define commit 12ebba1bea5006aaa0493d4d9e5d1ba1fe434ac1
%define tag 1.1.1
%global shortcommit %(c=%{commit}; echo ${c:0:7})

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

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

Name: umu-launcher
Version: 1.0
Version: 1.1.1
Release: %{rel_build}
Summary: A tool for launching non-steam games with proton

Expand Down Expand Up @@ -40,7 +41,7 @@ Requires: python3-filelock
%prep
git clone --single-branch --branch main https://github.com/Open-Wine-Components/umu-launcher.git
cd umu-launcher
git checkout %{commit}
git checkout %{tag}
git submodule update --init --recursive

%build
Expand Down
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.0' # You can set this to the appropriate version
version: '1.1.1' # You can set this to the appropriate version
summary: UMU Launcher
description: |
UMU Launcher is a tool for managing and launching applications.
Expand Down Expand Up @@ -171,7 +171,7 @@ parts:
umu-run:
plugin: dump
source: https://github.com/Open-Wine-Components/umu-launcher.git
source-branch: main
source-tag: 1.1.1
build-packages:
- git
- make
Expand Down
2 changes: 1 addition & 1 deletion umu/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.1" # noqa: D104
__version__ = "1.1.1" # noqa: D104

0 comments on commit b9c9b8f

Please sign in to comment.