From 9ebcf5001a5a324c494afce9122bbc4201fa8e9c Mon Sep 17 00:00:00 2001 From: Daniel Stiner Date: Fri, 14 May 2021 19:51:06 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.4.0=20=E2=86=92=200.4.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 3 +-- linux/Cargo.lock | 10 +++++----- linux/meta-package/debian/changelog | 7 +++++++ linux/softu2f.spec | 2 +- linux/system-daemon/Cargo.toml | 2 +- linux/system-daemon/softu2f-system-daemon.spec | 2 +- linux/uhid-tokio/Cargo.toml | 2 +- linux/user-daemon/Cargo.toml | 2 +- linux/user-daemon/softu2f-user-daemon.spec | 2 +- u2f-core/Cargo.toml | 2 +- u2fhid-protocol/Cargo.toml | 2 +- 11 files changed, 21 insertions(+), 15 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 70c1ef5..3aa2382 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.0 +current_version = 0.4.1 commit = True tag = True @@ -34,4 +34,3 @@ replace = Version: {new_version} [bumpversion:file:linux/softu2f.spec] search = Version: {current_version} replace = Version: {new_version} - diff --git a/linux/Cargo.lock b/linux/Cargo.lock index f5868c6..4c07af4 100644 --- a/linux/Cargo.lock +++ b/linux/Cargo.lock @@ -1631,7 +1631,7 @@ dependencies = [ [[package]] name = "softu2f-system-daemon" -version = "0.4.0" +version = "0.4.1" dependencies = [ "bincode", "bytes", @@ -1661,7 +1661,7 @@ dependencies = [ [[package]] name = "softu2f-user-daemon" -version = "0.4.0" +version = "0.4.1" dependencies = [ "base64 0.10.1", "bincode", @@ -1925,7 +1925,7 @@ dependencies = [ [[package]] name = "tokio-linux-uhid" -version = "0.4.0" +version = "0.4.1" dependencies = [ "bitflags", "bytes", @@ -2104,7 +2104,7 @@ checksum = "6d2783fe2d6b8c1101136184eb41be8b1ad379e4657050b8aaff0c79ee7575f9" [[package]] name = "u2f-core" -version = "0.4.0" +version = "0.4.1" dependencies = [ "assert_matches", "base64 0.10.1", @@ -2126,7 +2126,7 @@ dependencies = [ [[package]] name = "u2fhid-protocol" -version = "0.4.0" +version = "0.4.1" dependencies = [ "bitflags", "byteorder", diff --git a/linux/meta-package/debian/changelog b/linux/meta-package/debian/changelog index 14e8a94..a01b96c 100644 --- a/linux/meta-package/debian/changelog +++ b/linux/meta-package/debian/changelog @@ -1,3 +1,10 @@ +softu2f (0.4.1) unstable; urgency=medium + + * Logging improvements + * Add additional known app id hashes + + -- Dan Fri, 14 May 2021 19:55:00 -0800 + softu2f (0.4.0) unstable; urgency=medium * Store secrets in secret service if available diff --git a/linux/softu2f.spec b/linux/softu2f.spec index 95d1958..930523c 100644 --- a/linux/softu2f.spec +++ b/linux/softu2f.spec @@ -1,5 +1,5 @@ Name: softu2f -Version: 0.4.0 +Version: 0.4.1 Release: 1%{?dist} Summary: U2F tokens emulated as software diff --git a/linux/system-daemon/Cargo.toml b/linux/system-daemon/Cargo.toml index ce082b6..c8ae2d2 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.0" +version = "0.4.1" [dependencies] bincode = "1.1.4" diff --git a/linux/system-daemon/softu2f-system-daemon.spec b/linux/system-daemon/softu2f-system-daemon.spec index c00cd08..84448b1 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.0 +Version: 0.4.1 Release: 1%{?dist} Summary: System daemon for SoftU2F diff --git a/linux/uhid-tokio/Cargo.toml b/linux/uhid-tokio/Cargo.toml index b49d1f5..90339f4 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.0" +version = "0.4.1" 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 8219e23..bf05c2f 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.0" +version = "0.4.1" [dependencies] base64 = "0.10.1" diff --git a/linux/user-daemon/softu2f-user-daemon.spec b/linux/user-daemon/softu2f-user-daemon.spec index 20b4773..5b43993 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.0 +Version: 0.4.1 Release: 1%{?dist} Summary: User daemon for SoftU2F diff --git a/u2f-core/Cargo.toml b/u2f-core/Cargo.toml index 83adae6..4aabba6 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.0" +version = "0.4.1" [dependencies] assert_matches = "1.3.0" base64 = "0.10.1" diff --git a/u2fhid-protocol/Cargo.toml b/u2fhid-protocol/Cargo.toml index 89972cb..96273c4 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.0" +version = "0.4.1" [dependencies] bitflags = "1.1.0"