Skip to content

Commit

Permalink
Bump to v0.4.0
Browse files Browse the repository at this point in the history
Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
  • Loading branch information
saschagrunert committed Aug 27, 2021
1 parent cf43ddd commit 3ff79a8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "oci-spec"
version = "0.3.0"
version = "0.4.0"
edition = "2018"
authors = [
"Furisto",
Expand Down Expand Up @@ -36,4 +36,3 @@ cfg-if = "1.0.0"
[dev-dependencies]
tempfile = "3.2.0"
serde_json = { version = "1.0.66", features = ["preserve_order"] }

2 changes: 1 addition & 1 deletion src/distribution/version.rs
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
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
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 3ff79a8

Please sign in to comment.