diff --git a/Cargo.lock b/Cargo.lock index 5cde5e7..44085fb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -481,7 +481,7 @@ dependencies = [ [[package]] name = "nuts-archive" -version = "0.7.0" +version = "0.7.1" dependencies = [ "chrono", "log", @@ -496,11 +496,11 @@ dependencies = [ [[package]] name = "nuts-backend" -version = "0.7.0" +version = "0.7.1" [[package]] name = "nuts-bytes" -version = "0.7.0" +version = "0.7.1" dependencies = [ "nuts-bytes-derive", "thiserror", @@ -508,7 +508,7 @@ dependencies = [ [[package]] name = "nuts-bytes-derive" -version = "0.7.0" +version = "0.7.1" dependencies = [ "proc-macro2", "quote", @@ -517,7 +517,7 @@ dependencies = [ [[package]] name = "nuts-container" -version = "0.7.0" +version = "0.7.1" dependencies = [ "log", "nuts-backend", @@ -528,7 +528,7 @@ dependencies = [ [[package]] name = "nuts-directory" -version = "0.7.0" +version = "0.7.1" dependencies = [ "getrandom", "log", @@ -538,7 +538,7 @@ dependencies = [ [[package]] name = "nuts-memory" -version = "0.7.0" +version = "0.7.1" dependencies = [ "nuts-backend", "nuts-bytes", @@ -547,7 +547,7 @@ dependencies = [ [[package]] name = "nuts-tool" -version = "0.7.0" +version = "0.7.1" dependencies = [ "anyhow", "chrono", @@ -567,7 +567,7 @@ dependencies = [ [[package]] name = "nuts-tool-api" -version = "0.7.0" +version = "0.7.1" dependencies = [ "bson", "bytes", diff --git a/Changelog.md b/Changelog.md index 6aa150c..dd87dbc 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## [0.7.1] - 2024-09-18 + +### Fixed + +* Fix `nuts archive create` invocation. + ## [0.7.0] - 2024-09-03 ### Changed @@ -476,3 +482,4 @@ Initial public release. [0.6.7]: https://github.com/drobin/nuts/tree/v0.6.7 [0.6.8]: https://github.com/drobin/nuts/tree/v0.6.8 [0.7.0]: https://github.com/drobin/nuts/tree/v0.7.0 +[0.7.1]: https://github.com/drobin/nuts/tree/v0.7.1 diff --git a/nuts-archive/Cargo.toml b/nuts-archive/Cargo.toml index 007463e..d8bcbd7 100644 --- a/nuts-archive/Cargo.toml +++ b/nuts-archive/Cargo.toml @@ -22,7 +22,7 @@ [package] name = "nuts-archive" -version = "0.7.0" +version = "0.7.1" edition = "2018" authors = ["Robin Doer "] description = "A tar like archive on top of the nuts-container" @@ -38,14 +38,14 @@ readme = "README.md" [dependencies] chrono = { version = "0.4.38" } log = "0.4.21" -nuts-backend = { path = "../nuts-backend", version = "=0.7.0" } -nuts-bytes = { path = "../nuts-bytes", version = "=0.7.0", features = [ +nuts-backend = { path = "../nuts-backend", version = "=0.7.1" } +nuts-bytes = { path = "../nuts-bytes", version = "=0.7.1", features = [ "derive", ] } -nuts-container = { path = "../nuts-container", version = "=0.7.0" } +nuts-container = { path = "../nuts-container", version = "=0.7.1" } thiserror = "1.0.61" [dev-dependencies] -nuts-directory = { path = "../nuts-directory", version = "=0.7.0" } -nuts-memory = { path = "../nuts-memory", version = "=0.7.0" } +nuts-directory = { path = "../nuts-directory", version = "=0.7.1" } +nuts-memory = { path = "../nuts-memory", version = "=0.7.1" } tempfile = "3.10.1" diff --git a/nuts-backend/Cargo.toml b/nuts-backend/Cargo.toml index 02c700a..d44297e 100644 --- a/nuts-backend/Cargo.toml +++ b/nuts-backend/Cargo.toml @@ -22,7 +22,7 @@ [package] name = "nuts-backend" -version = "0.7.0" +version = "0.7.1" edition = "2018" authors = ["Robin Doer "] description = "A secure storage library" diff --git a/nuts-bytes-derive/Cargo.toml b/nuts-bytes-derive/Cargo.toml index 7099612..38a800f 100644 --- a/nuts-bytes-derive/Cargo.toml +++ b/nuts-bytes-derive/Cargo.toml @@ -22,7 +22,7 @@ [package] name = "nuts-bytes-derive" -version = "0.7.0" +version = "0.7.1" edition = "2018" authors = ["Robin Doer "] description = "Serialization into a binary data format" diff --git a/nuts-bytes/Cargo.toml b/nuts-bytes/Cargo.toml index 4d22e58..0b069fa 100644 --- a/nuts-bytes/Cargo.toml +++ b/nuts-bytes/Cargo.toml @@ -22,7 +22,7 @@ [package] name = "nuts-bytes" -version = "0.7.0" +version = "0.7.1" edition = "2018" authors = ["Robin Doer "] description = "Serialization into a binary data format" @@ -39,7 +39,7 @@ readme = "README.md" derive = ["dep:nuts-bytes-derive"] [dependencies] -nuts-bytes-derive = { version = "=0.7.0", path = "../nuts-bytes-derive", optional = true } +nuts-bytes-derive = { version = "=0.7.1", path = "../nuts-bytes-derive", optional = true } thiserror = "1.0.61" [package.metadata.docs.rs] diff --git a/nuts-container/Cargo.toml b/nuts-container/Cargo.toml index 0e0f91c..41324e6 100644 --- a/nuts-container/Cargo.toml +++ b/nuts-container/Cargo.toml @@ -22,7 +22,7 @@ [package] name = "nuts-container" -version = "0.7.0" +version = "0.7.1" edition = "2018" authors = ["Robin Doer "] description = "A secure storage library" @@ -41,9 +41,9 @@ debug-plain-keys = [] [dependencies] log = "0.4.21" -nuts-backend = { path = "../nuts-backend", version = "=0.7.0" } +nuts-backend = { path = "../nuts-backend", version = "=0.7.1" } openssl = { version = "0.10.66", features = ["vendored"] } thiserror = "1.0.61" [dev-dependencies] -nuts-memory = { path = "../nuts-memory", version = "=0.7.0" } +nuts-memory = { path = "../nuts-memory", version = "=0.7.1" } diff --git a/nuts-directory/Cargo.toml b/nuts-directory/Cargo.toml index cf31ce8..946047b 100644 --- a/nuts-directory/Cargo.toml +++ b/nuts-directory/Cargo.toml @@ -22,7 +22,7 @@ [package] name = "nuts-directory" -version = "0.7.0" +version = "0.7.1" edition = "2018" authors = ["Robin Doer "] description = "A backend implementation for nuts" @@ -37,8 +37,8 @@ readme = "README.md" [dependencies] getrandom = { version = "0.2.15", features = ["std"] } log = "0.4.21" -nuts-backend = { path = "../nuts-backend", version = "=0.7.0" } -nuts-tool-api = { path = "../nuts-tool-api", version = "=0.7.0", optional = true } +nuts-backend = { path = "../nuts-backend", version = "=0.7.1" } +nuts-tool-api = { path = "../nuts-tool-api", version = "=0.7.1", optional = true } [features] plugin = ["dep:nuts-tool-api"] diff --git a/nuts-memory/Cargo.toml b/nuts-memory/Cargo.toml index 5284583..bf85c30 100644 --- a/nuts-memory/Cargo.toml +++ b/nuts-memory/Cargo.toml @@ -22,7 +22,7 @@ [package] name = "nuts-memory" -version = "0.7.0" +version = "0.7.1" edition = "2018" authors = ["Robin Doer "] description = "A backend implementation for nuts" @@ -36,8 +36,8 @@ readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -nuts-backend = { path = "../nuts-backend", version = "=0.7.0" } -nuts-bytes = { path = "../nuts-bytes", version = "=0.7.0", features = [ +nuts-backend = { path = "../nuts-backend", version = "=0.7.1" } +nuts-bytes = { path = "../nuts-bytes", version = "=0.7.1", features = [ "derive", ] } thiserror = "1.0.61" diff --git a/nuts-tool-api/Cargo.toml b/nuts-tool-api/Cargo.toml index 6e71601..acc5355 100644 --- a/nuts-tool-api/Cargo.toml +++ b/nuts-tool-api/Cargo.toml @@ -22,7 +22,7 @@ [package] name = "nuts-tool-api" -version = "0.7.0" +version = "0.7.1" edition = "2018" authors = ["Robin Doer "] description = "Code that helps you to implement a nuts tool plugin" @@ -43,7 +43,7 @@ log = "0.4.21" clap = { version = "4.5.4", features = ["cargo", "derive"], optional = true } env_logger = { version = "0.10.2", optional = true } -nuts-backend = { path = "../nuts-backend", version = "=0.7.0", optional = true } +nuts-backend = { path = "../nuts-backend", version = "=0.7.1", optional = true } thiserror = "1.0.61" [features] diff --git a/nuts-tool/Cargo.toml b/nuts-tool/Cargo.toml index c6de135..b532aef 100644 --- a/nuts-tool/Cargo.toml +++ b/nuts-tool/Cargo.toml @@ -22,7 +22,7 @@ [package] name = "nuts-tool" -version = "0.7.0" +version = "0.7.1" edition = "2018" rust-version = "1.66" authors = ["Robin Doer "] @@ -42,10 +42,10 @@ clap = { version = "4.5.4", features = ["cargo", "color", "derive", "env"] } colored = "2.1.0" env_logger = "0.10.2" log = "0.4.21" -nuts-archive = { path = "../nuts-archive", version = "=0.7.0" } -nuts-backend = { path = "../nuts-backend", version = "=0.7.0" } -nuts-container = { path = "../nuts-container", version = "=0.7.0" } -nuts-tool-api = { path = "../nuts-tool-api", version = "=0.7.0", default-features = false, features = [ +nuts-archive = { path = "../nuts-archive", version = "=0.7.1" } +nuts-backend = { path = "../nuts-backend", version = "=0.7.1" } +nuts-container = { path = "../nuts-container", version = "=0.7.1" } +nuts-tool-api = { path = "../nuts-tool-api", version = "=0.7.1", default-features = false, features = [ "tool", ] } rpassword = "7.3.1"