diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..79d0700 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ + + +# Changelog + +## [v0.1.0][] (2023-04-13) + +This initial release contains support for the basic PIV card functionality. +It supports basic card administration, key generation and authentication. + +Supported algorithms are P-256 and RSA 2048. + +[v0.1.0]: https://github.com/Nitrokey/piv-authenticator/releases/tag/v0.1.0 diff --git a/Cargo.toml b/Cargo.toml index 5a8d05b..58a2dec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,11 +3,11 @@ [package] name = "piv-authenticator" -version = "0.0.0-unreleased" +version = "0.1.0" authors = ["Nicolas Stalder ", "Nitrokey GmbH"] edition = "2021" license = "LGPL-3.0-only" -repository = "https://github.com/solokeys/piv-authenticator" +repository = "https://github.com/nitrokey/piv-authenticator" documentation = "https://docs.rs/piv-authenticator" [[example]] @@ -35,7 +35,7 @@ vpicc = { version = "0.1.0", optional = true } log = "0.4" heapless-bytes = "0.3.0" subtle = { version = "2", default-features = false } -trussed-rsa-alloc = { git = "https://github.com/Nitrokey/trussed-rsa-backend.git", rev = "e29b26ab3800217b7eb73ecde67134bbb3acb9da", features = ["raw"] } +trussed-rsa-alloc = { git = "https://github.com/Nitrokey/trussed-rsa-backend.git", rev = "bc48a97cd5a900ff38395433788a6fbe4e712434", features = ["raw"] } [dev-dependencies] littlefs2 = "0.3.2"