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 0.1.0 #176

Closed
wants to merge 1 commit into from
Closed
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
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.0-1) noble; urgency=medium
umu-launcher (0.1.0-1) noble; urgency=medium

* Initial release.

-- Ward Nakchbandi <[email protected]> Mon, 08 Jul 2024 06:13:24 +0300
-- Ward Nakchbandi <[email protected]> Mon, 08 Jul 2024 06:13:24 +0300
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 = "0.1.0";
src = umu-launcher;
pyproject = false;
depsBuildBuild = [
Expand Down
2 changes: 1 addition & 1 deletion packaging/rpm/umu-launcher.spec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
%global rel_build 1.%{build_timestamp}.%{shortcommit}%{?dist}

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

Expand Down
2 changes: 1 addition & 1 deletion 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: '0.1.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
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__ = "0.1.0" # noqa: D104
Loading