Skip to content

Commit

Permalink
Bump version to 0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin Doer committed Sep 27, 2024
1 parent c348c8f commit 2f746e3
Show file tree
Hide file tree
Showing 11 changed files with 53 additions and 36 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

All notable changes to this project will be documented in this file.

## [0.7.2] - 2024-09-27

### Fixed

* Ensure that you are on the latest revision if a service is created
* Do not allow to read a header with a future revision

### Changed

* Refactoring: do not auto-migrate header revision on write
* Adapt `Container::open_service` semantics to `Container::create_service`

### Added

* Implement some compatibility tests

## [0.7.1] - 2024-09-18

### Fixed
Expand Down Expand Up @@ -483,3 +499,4 @@ Initial public release.
[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
[0.7.2]: https://github.com/drobin/nuts/tree/v0.7.2
12 changes: 6 additions & 6 deletions nuts-archive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

[package]
name = "nuts-archive"
version = "0.7.1"
version = "0.7.2"
edition = "2018"
authors = ["Robin Doer <[email protected]>"]
description = "A tar like archive on top of the nuts-container"
Expand All @@ -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.1" }
nuts-bytes = { path = "../nuts-bytes", version = "=0.7.1", features = [
nuts-backend = { path = "../nuts-backend", version = "=0.7.2" }
nuts-bytes = { path = "../nuts-bytes", version = "=0.7.2", features = [
"derive",
] }
nuts-container = { path = "../nuts-container", version = "=0.7.1" }
nuts-container = { path = "../nuts-container", version = "=0.7.2" }
thiserror = "1.0.61"

[dev-dependencies]
nuts-directory = { path = "../nuts-directory", version = "=0.7.1" }
nuts-memory = { path = "../nuts-memory", version = "=0.7.1" }
nuts-directory = { path = "../nuts-directory", version = "=0.7.2" }
nuts-memory = { path = "../nuts-memory", version = "=0.7.2" }
tempfile = "3.10.1"
2 changes: 1 addition & 1 deletion nuts-backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

[package]
name = "nuts-backend"
version = "0.7.1"
version = "0.7.2"
edition = "2018"
authors = ["Robin Doer <[email protected]>"]
description = "A secure storage library"
Expand Down
2 changes: 1 addition & 1 deletion nuts-bytes-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

[package]
name = "nuts-bytes-derive"
version = "0.7.1"
version = "0.7.2"
edition = "2018"
authors = ["Robin Doer <[email protected]>"]
description = "Serialization into a binary data format"
Expand Down
4 changes: 2 additions & 2 deletions nuts-bytes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

[package]
name = "nuts-bytes"
version = "0.7.1"
version = "0.7.2"
edition = "2018"
authors = ["Robin Doer <[email protected]>"]
description = "Serialization into a binary data format"
Expand All @@ -39,7 +39,7 @@ readme = "README.md"
derive = ["dep:nuts-bytes-derive"]

[dependencies]
nuts-bytes-derive = { version = "=0.7.1", path = "../nuts-bytes-derive", optional = true }
nuts-bytes-derive = { version = "=0.7.2", path = "../nuts-bytes-derive", optional = true }
thiserror = "1.0.61"

[package.metadata.docs.rs]
Expand Down
8 changes: 4 additions & 4 deletions nuts-container/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

[package]
name = "nuts-container"
version = "0.7.1"
version = "0.7.2"
edition = "2018"
authors = ["Robin Doer <[email protected]>"]
description = "A secure storage library"
Expand All @@ -41,10 +41,10 @@ debug-plain-keys = []

[dependencies]
log = "0.4.21"
nuts-backend = { path = "../nuts-backend", version = "=0.7.1" }
nuts-backend = { path = "../nuts-backend", version = "=0.7.2" }
openssl = { version = "0.10.66", features = ["vendored"] }
thiserror = "1.0.61"

[dev-dependencies]
nuts-memory = { path = "../nuts-memory", version = "=0.7.1" }
nuts-directory = { path = "../nuts-directory", version = "=0.7.1" }
nuts-memory = { path = "../nuts-memory", version = "=0.7.2" }
nuts-directory = { path = "../nuts-directory", version = "=0.7.2" }
6 changes: 3 additions & 3 deletions nuts-directory/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

[package]
name = "nuts-directory"
version = "0.7.1"
version = "0.7.2"
edition = "2018"
authors = ["Robin Doer <[email protected]>"]
description = "A backend implementation for nuts"
Expand All @@ -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.1" }
nuts-tool-api = { path = "../nuts-tool-api", version = "=0.7.1", optional = true }
nuts-backend = { path = "../nuts-backend", version = "=0.7.2" }
nuts-tool-api = { path = "../nuts-tool-api", version = "=0.7.2", optional = true }

[features]
plugin = ["dep:nuts-tool-api"]
Expand Down
6 changes: 3 additions & 3 deletions nuts-memory/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

[package]
name = "nuts-memory"
version = "0.7.1"
version = "0.7.2"
edition = "2018"
authors = ["Robin Doer <[email protected]>"]
description = "A backend implementation for nuts"
Expand All @@ -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.1" }
nuts-bytes = { path = "../nuts-bytes", version = "=0.7.1", features = [
nuts-backend = { path = "../nuts-backend", version = "=0.7.2" }
nuts-bytes = { path = "../nuts-bytes", version = "=0.7.2", features = [
"derive",
] }
thiserror = "1.0.61"
4 changes: 2 additions & 2 deletions nuts-tool-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

[package]
name = "nuts-tool-api"
version = "0.7.1"
version = "0.7.2"
edition = "2018"
authors = ["Robin Doer <[email protected]>"]
description = "Code that helps you to implement a nuts tool plugin"
Expand All @@ -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.1", optional = true }
nuts-backend = { path = "../nuts-backend", version = "=0.7.2", optional = true }
thiserror = "1.0.61"

[features]
Expand Down
10 changes: 5 additions & 5 deletions nuts-tool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

[package]
name = "nuts-tool"
version = "0.7.1"
version = "0.7.2"
edition = "2018"
rust-version = "1.66"
authors = ["Robin Doer <[email protected]>"]
Expand All @@ -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.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 = [
nuts-archive = { path = "../nuts-archive", version = "=0.7.2" }
nuts-backend = { path = "../nuts-backend", version = "=0.7.2" }
nuts-container = { path = "../nuts-container", version = "=0.7.2" }
nuts-tool-api = { path = "../nuts-tool-api", version = "=0.7.2", default-features = false, features = [
"tool",
] }
rpassword = "7.3.1"
Expand Down

0 comments on commit 2f746e3

Please sign in to comment.