Skip to content

Commit 9e04df7

Browse files
committed
2.0.0
1 parent 6b4b853 commit 9e04df7

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-rc
2+
Version: 2.0.0
33
Architecture: all
44
Maintainer: Sezanzeb <[email protected]>
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

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-rc.deb
41+
sudo apt install -f ./dist/input-remapper-2.0.0.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
@@ -244,7 +244,7 @@ def format(self, record: logging.LogRecord):
244244

245245
# using pkg_resources to figure out the version fails in many cases,
246246
# so we hardcode it instead
247-
VERSION = "2.0.0-rc"
247+
VERSION = "2.0.0"
248248
EVDEV_VERSION = None
249249
try:
250250
EVDEV_VERSION = pkg_resources.require("evdev")[0].version

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-rc.deb`
101+
This will generate `input-remapper/deb/input-remapper-2.0.0.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-rc.deb || true
13-
dpkg-deb -Z gzip -b build/deb dist/input-remapper-2.0.0-rc.deb
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
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-rc",
105+
version="2.0.0",
106106
description="A tool to change the mapping of your input device buttons",
107107
author="Sezanzeb",
108108
author_email="[email protected]",

0 commit comments

Comments
 (0)