diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3aa2382..85b1fec 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.1 +current_version = 0.4.2 commit = True tag = True diff --git a/linux/meta-package/debian/changelog b/linux/meta-package/debian/changelog index a01b96c..000f470 100644 --- a/linux/meta-package/debian/changelog +++ b/linux/meta-package/debian/changelog @@ -1,3 +1,11 @@ +softu2f (0.4.2) unstable; urgency=medium + +* Remove xdg:schema search attribute, some entries from older versions can lack this attribute +* Better handling of bogus app id's from Firefox and Chrome + + -- Dan Mon, 6 Sep 2021 15:32:00 -0800 + + softu2f (0.4.1) unstable; urgency=medium * Logging improvements diff --git a/linux/softu2f.spec b/linux/softu2f.spec index 930523c..096e317 100644 --- a/linux/softu2f.spec +++ b/linux/softu2f.spec @@ -1,5 +1,5 @@ Name: softu2f -Version: 0.4.1 +Version: 0.4.2 Release: 1%{?dist} Summary: U2F tokens emulated as software diff --git a/linux/system-daemon/Cargo.toml b/linux/system-daemon/Cargo.toml index c8ae2d2..670c378 100644 --- a/linux/system-daemon/Cargo.toml +++ b/linux/system-daemon/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Daniel Stiner "] description = "System daemon for emulating U2F devices" name = "softu2f-system-daemon" -version = "0.4.1" +version = "0.4.2" [dependencies] bincode = "1.1.4" diff --git a/linux/system-daemon/softu2f-system-daemon.spec b/linux/system-daemon/softu2f-system-daemon.spec index 84448b1..b1fbe25 100644 --- a/linux/system-daemon/softu2f-system-daemon.spec +++ b/linux/system-daemon/softu2f-system-daemon.spec @@ -1,7 +1,7 @@ # vim: sw=4:ts=4:et Name: softu2f-system-daemon -Version: 0.4.1 +Version: 0.4.2 Release: 1%{?dist} Summary: System daemon for SoftU2F diff --git a/linux/uhid-tokio/Cargo.toml b/linux/uhid-tokio/Cargo.toml index 90339f4..f3e4cd1 100644 --- a/linux/uhid-tokio/Cargo.toml +++ b/linux/uhid-tokio/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Daniel Stiner "] name = "tokio-linux-uhid" -version = "0.4.1" +version = "0.4.2" description = "Tokio-based interface to Linux UHID (user-space HID transport drivers)" license = "MIT" diff --git a/linux/user-daemon/Cargo.toml b/linux/user-daemon/Cargo.toml index bf05c2f..ea9176d 100644 --- a/linux/user-daemon/Cargo.toml +++ b/linux/user-daemon/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Daniel Stiner "] name = "softu2f-user-daemon" -version = "0.4.1" +version = "0.4.2" [dependencies] base64 = "0.10.1" diff --git a/linux/user-daemon/softu2f-user-daemon.spec b/linux/user-daemon/softu2f-user-daemon.spec index 5b43993..576cc78 100644 --- a/linux/user-daemon/softu2f-user-daemon.spec +++ b/linux/user-daemon/softu2f-user-daemon.spec @@ -1,7 +1,7 @@ # vim: sw=4:ts=4:et Name: softu2f-user-daemon -Version: 0.4.1 +Version: 0.4.2 Release: 1%{?dist} Summary: User daemon for SoftU2F diff --git a/u2f-core/Cargo.toml b/u2f-core/Cargo.toml index 4aabba6..e6a73a0 100644 --- a/u2f-core/Cargo.toml +++ b/u2f-core/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Daniel Stiner "] name = "u2f-core" -version = "0.4.1" +version = "0.4.2" [dependencies] assert_matches = "1.3.0" base64 = "0.10.1" diff --git a/u2fhid-protocol/Cargo.toml b/u2fhid-protocol/Cargo.toml index 96273c4..f4ce45b 100644 --- a/u2fhid-protocol/Cargo.toml +++ b/u2fhid-protocol/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Daniel Stiner "] name = "u2fhid-protocol" -version = "0.4.1" +version = "0.4.2" [dependencies] bitflags = "1.1.0"