diff --git a/70-nitrokey-3.rules b/70-nitrokey-3.rules
index 76caf8bf..30dbbba7 100644
--- a/70-nitrokey-3.rules
+++ b/70-nitrokey-3.rules
@@ -1,7 +1,7 @@
# Nitrokey 3 firmware
-SUBSYSTEM=="hidraw", ATTRS{idVendor}=="20a0", ATTRS{idProduct}=="42b3", TAG+="uaccess"
-SUBSYSTEM=="tty", ATTRS{idVendor}=="20a0", ATTRS{idProduct}=="42b3", TAG+="uaccess"
-SUBSYSTEM=="usb", ATTRS{idVendor}=="20a0", ATTRS{idProduct}=="42b3", TAG+="uaccess"
+SUBSYSTEM=="hidraw", ATTRS{idVendor}=="20a0", ATTRS{idProduct}=="42b2", TAG+="uaccess"
+SUBSYSTEM=="tty", ATTRS{idVendor}=="20a0", ATTRS{idProduct}=="42b2", TAG+="uaccess"
+SUBSYSTEM=="usb", ATTRS{idVendor}=="20a0", ATTRS{idProduct}=="42b2", TAG+="uaccess"
# Nitrokey 3 bootloader
SUBSYSTEM=="hidraw", ATTRS{idVendor}=="20a0", ATTRS{idProduct}=="42dd", TAG+="uaccess"
diff --git a/Info.plist b/Info.plist
index 0a788206..5fe2e598 100644
--- a/Info.plist
+++ b/Info.plist
@@ -1095,7 +1095,7 @@
0x2007
0x0001
0xBEEE
- 0x42b3
+ 0x42B2
ifdFriendlyName
diff --git a/runners/lpc55/Cargo.lock b/runners/lpc55/Cargo.lock
index 167aee14..8504c49e 100644
--- a/runners/lpc55/Cargo.lock
+++ b/runners/lpc55/Cargo.lock
@@ -1221,7 +1221,7 @@ dependencies = [
[[package]]
name = "runner"
-version = "0.2.0"
+version = "0.2.1"
dependencies = [
"admin-app",
"apdu-dispatch",
diff --git a/runners/lpc55/Cargo.toml b/runners/lpc55/Cargo.toml
index 34d6d182..9f63c37c 100644
--- a/runners/lpc55/Cargo.toml
+++ b/runners/lpc55/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "runner"
-version = "0.2.0"
+version = "0.2.1"
authors = ["Nicolas Stalder ", "Conor Patrick "]
edition = "2018"
resolver = "2"
diff --git a/runners/lpc55/src/lib.rs b/runners/lpc55/src/lib.rs
index a6f09c12..b1b84955 100644
--- a/runners/lpc55/src/lib.rs
+++ b/runners/lpc55/src/lib.rs
@@ -89,7 +89,7 @@ pub fn init_board(
usb_config: Some(initializer::UsbConfig {
manufacturer_name: "Nitrokey",
product_name: initializer::UsbProductName::UsePfr,
- vid_pid: UsbVidPid(0x20a0, 0x42b3),
+ vid_pid: UsbVidPid(0x20a0, 0x42b2),
})
};