Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 1.2.0 #311

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-umu-debian-12.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ./
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-umu-ubuntu-noble.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ./
Expand Down
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.4-1) noble; urgency=medium
umu-launcher (1.2.0-1) noble; urgency=medium

* 1.1.4 Release.
* 1.2.0 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.4-1) noble; urgency=medium
umu-launcher (1.2.0-1) noble; urgency=medium

* 1.1.4 Release.
* 1.2.0 Release.

-- Tom Crider <[email protected]> Sat, 12 Oct 2024 05:49:24 -0700
2 changes: 1 addition & 1 deletion packaging/nix/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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}"; };
Expand Down
4 changes: 2 additions & 2 deletions packaging/rpm/umu-launcher.spec
Original file line number Diff line number Diff line change
Expand Up @@ -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})}
Expand All @@ -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

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.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.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion umu/__init__.py
Original file line number Diff line number Diff line change
@@ -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]
Loading