Skip to content

Commit a012746

Browse files
committed
2.0.1
1 parent 568f56c commit a012746

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

DEBIAN/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: input-remapper
2-
Version: 2.0.0
2+
Version: 2.0.1
33
Architecture: all
44
Maintainer: Sezanzeb <proxima@sezanzeb.de>
55
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ or install the latest changes via:
3838
sudo apt install git python3-setuptools gettext
3939
git clone https://github.com/sezanzeb/input-remapper.git
4040
cd input-remapper && ./scripts/build.sh
41-
sudo apt install -f ./dist/input-remapper-2.0.0.deb
41+
sudo apt install -f ./dist/input-remapper-2.0.1.deb
4242
```
4343

4444
input-remapper is available in [Debian](https://tracker.debian.org/pkg/input-remapper)

inputremapper/logger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ def format(self, record: logging.LogRecord):
242242

243243
# using pkg_resources to figure out the version fails in many cases,
244244
# so we hardcode it instead
245-
VERSION = "2.0.0"
245+
VERSION = "2.0.1"
246246
EVDEV_VERSION = None
247247
try:
248248
# pkg_resources very commonly fails/breaks

readme/development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ ssh/login into a debian/ubuntu environment
9898
scripts/build.sh
9999
```
100100

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

103103
Badges
104104
------

scripts/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ build_deb() {
99
mv build/deb/usr/local/lib/python3.*/ build/deb/usr/lib/python3/
1010
cp ./DEBIAN build/deb/ -r
1111
mkdir dist -p
12-
rm dist/input-remapper-2.0.0.deb || true
13-
dpkg-deb -Z gzip -b build/deb dist/input-remapper-2.0.0.deb
12+
rm dist/input-remapper-2.0.1.deb || true
13+
dpkg-deb -Z gzip -b build/deb dist/input-remapper-2.0.1.deb
1414
}
1515

1616
build_deb &

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def make_lang():
102102

103103
setup(
104104
name="input-remapper",
105-
version="2.0.0",
105+
version="2.0.1",
106106
description="A tool to change the mapping of your input device buttons",
107107
author="Sezanzeb",
108108
author_email="proxima@sezanzeb.de",

0 commit comments

Comments
 (0)