Skip to content

Commit

Permalink
2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sezanzeb committed Sep 18, 2023
1 parent 568f56c commit a012746
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: input-remapper
Version: 2.0.0
Version: 2.0.1
Architecture: all
Maintainer: Sezanzeb <[email protected]>
Depends: build-essential, libpython3-dev, libdbus-1-dev, python3, python3-setuptools, python3-evdev, python3-pydbus, python3-gi, gettext, python3-cairo, libgtk-3-0, libgtksourceview-4-dev, python3-pydantic, python3-packaging
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ or install the latest changes via:
sudo apt install git python3-setuptools gettext
git clone https://github.com/sezanzeb/input-remapper.git
cd input-remapper && ./scripts/build.sh
sudo apt install -f ./dist/input-remapper-2.0.0.deb
sudo apt install -f ./dist/input-remapper-2.0.1.deb
```

input-remapper is available in [Debian](https://tracker.debian.org/pkg/input-remapper)
Expand Down
2 changes: 1 addition & 1 deletion inputremapper/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def format(self, record: logging.LogRecord):

# using pkg_resources to figure out the version fails in many cases,
# so we hardcode it instead
VERSION = "2.0.0"
VERSION = "2.0.1"
EVDEV_VERSION = None
try:
# pkg_resources very commonly fails/breaks
Expand Down
2 changes: 1 addition & 1 deletion readme/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ ssh/login into a debian/ubuntu environment
scripts/build.sh
```

This will generate `input-remapper/deb/input-remapper-2.0.0.deb`
This will generate `input-remapper/deb/input-remapper-2.0.1.deb`

Badges
------
Expand Down
4 changes: 2 additions & 2 deletions scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ build_deb() {
mv build/deb/usr/local/lib/python3.*/ build/deb/usr/lib/python3/
cp ./DEBIAN build/deb/ -r
mkdir dist -p
rm dist/input-remapper-2.0.0.deb || true
dpkg-deb -Z gzip -b build/deb dist/input-remapper-2.0.0.deb
rm dist/input-remapper-2.0.1.deb || true
dpkg-deb -Z gzip -b build/deb dist/input-remapper-2.0.1.deb
}

build_deb &
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def make_lang():

setup(
name="input-remapper",
version="2.0.0",
version="2.0.1",
description="A tool to change the mapping of your input device buttons",
author="Sezanzeb",
author_email="[email protected]",
Expand Down

2 comments on commit a012746

@alxpl
Copy link
Contributor

@alxpl alxpl commented on a012746 Sep 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updates for Fedora 37, 38 and 39 are being pushed to the testing repositories - the package is already available in Rawhide.
https://bodhi.fedoraproject.org/updates/?packages=input-remapper

@sezanzeb
Copy link
Owner Author

@sezanzeb sezanzeb commented on a012746 Sep 19, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updates for Fedora 37, 38 and 39 are being pushed to the testing repositories - the package is already available in Rawhide. https://bodhi.fedoraproject.org/updates/?packages=input-remapper

thanks!

Please sign in to comment.