Skip to content

Commit

Permalink
Bump to 0.5.6
Browse files Browse the repository at this point in the history
Signed-off-by: utam0k <k0ma@utam0k.jp>
  • Loading branch information
utam0k committed May 9, 2022
1 parent 89376af commit 3a47470
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oci-spec"
version = "0.5.5"
version = "0.5.6"
edition = "2018"
authors = [
"Furisto",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This library provides a convenient way to interact with the specifications defin

```toml
[dependencies]
oci-spec = "0.5.5"
oci-spec = "0.5.6"
```
*Compiler support: requires rustc 1.54+*

Expand Down
2 changes: 1 addition & 1 deletion src/distribution/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pub const VERSION_MINOR: u32 = 0;
pub const VERSION_PATCH: u32 = 0;

/// Indicates development branch. Releases will be empty string.
pub const VERSION_DEV: &str = "-dev";
pub const VERSION_DEV: &str = "";

/// Retrieve the version as string representation.
pub fn version() -> String {
Expand Down
2 changes: 1 addition & 1 deletion src/image/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pub const VERSION_MINOR: u32 = 0;
pub const VERSION_PATCH: u32 = 1;

/// Indicates development branch. Releases will be empty string.
pub const VERSION_DEV: &str = "-dev";
pub const VERSION_DEV: &str = "";

/// Retrieve the version as string representation.
pub fn version() -> String {
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pub const VERSION_MINOR: u32 = 0;
pub const VERSION_PATCH: u32 = 2;

/// Indicates development branch. Releases will be empty string.
pub const VERSION_DEV: &str = "-dev";
pub const VERSION_DEV: &str = "";

/// Retrieve the version as string representation.
pub fn version() -> String {
Expand Down

0 comments on commit 3a47470

Please sign in to comment.