Skip to content

Commit

Permalink
util: prepare for releasing v0.3
Browse files Browse the repository at this point in the history
Prepare for release nydus-utils v0.3.

Signed-off-by: Jiang Liu <gerry@linux.alibaba.com>
  • Loading branch information
jiangliu committed Jun 12, 2022
1 parent 42f7d24 commit 35a35c5
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ nydus-app = { path = "app" }
nydus-error = { path = "error" }
nydus-rafs = { version = "0.1.0", path = "rafs", features = ["backend-registry", "backend-oss"] }
nydus-storage = { version = "0.5.0", path = "storage" }
nydus-utils = { version = "0.2.0", path = "utils" }
nydus-utils = { version = "0.3.0", path = "utils" }
blobfs = { path = "blobfs", features = ["virtiofs"], optional = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ url = "2.1.1"
vmm-sys-util = "0.9.0"

nydus-error = { version = "0.2.0", path = "../error" }
nydus-utils = { version = "0.2.0", path = "../utils" }
nydus-utils = { version = "0.3.0", path = "../utils" }
2 changes: 1 addition & 1 deletion rafs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ fuse-backend-rs = { version = "0.9.0" }
nydus-api = { version = "0.1.0", path = "../api" }
nydus-error = { version = "0.2.0", path = "../error" }
nydus-storage = { version = "0.5.0", path = "../storage", features = ["backend-localfs"] }
nydus-utils = { version = "0.2.0", path = "../utils" }
nydus-utils = { version = "0.3.0", path = "../utils" }

[dev-dependencies]
vmm-sys-util = "0.9.0"
Expand Down
2 changes: 1 addition & 1 deletion storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ vmm-sys-util = "0.9.0"
fuse-backend-rs = { version = "0.9.0" }

nydus-api = { version = "0.1.0", path = "../api" }
nydus-utils = { version = "0.2.0", path = "../utils" }
nydus-utils = { version = "0.3.0", path = "../utils" }
nydus-error = { version = "0.2.0", path = "../error" }

[dev-dependencies]
Expand Down
19 changes: 19 additions & 0 deletions utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Changelog
## [Unreleased]

## [v0.3]

### Added
- Asynchronous multi-producer multi-consumer channel

### Fixed
- Refine metrics APIs

### Deprecated
- Remove dependency on fuse-backend-rs crate

## [v0.1.0]

### Added

- Initial release
2 changes: 1 addition & 1 deletion utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nydus-utils"
version = "0.2.1"
version = "0.3.0"
description = "Compression/encryption/digest utilities for Nydus Image Service"
authors = ["The Nydus Developers"]
license = "Apache-2.0 OR BSD-3-Clause"
Expand Down

0 comments on commit 35a35c5

Please sign in to comment.