Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Commit

Permalink
bump version to v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
burmecia committed Mar 24, 2018
1 parent 8957cea commit c81b22d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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 = "zbox"
version = "0.4.0"
version = "0.5.0"
authors = ["Bo Lu"]
description = "Zbox is a zero-details, privacy-focused embeddable file system."
documentation = "https://docs.rs/zbox"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Add the following dependency to your `Cargo.toml`:

```toml
[dependencies]
zbox = "0.4.0"
zbox = "0.5.0"
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ dnl Process this file with autoconf to produce a configure script.

dnl Semantic Versioning, http://semver.org
m4_define([zbox_version_major], [0])
m4_define([zbox_version_minor], [4])
m4_define([zbox_version_minor], [5])
m4_define([zbox_version_patch], [0])

AC_PREREQ([2.69])
Expand Down
2 changes: 1 addition & 1 deletion src/version.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// Define Zbox library version
pub const MAJOR_VERSION: u8 = 0;
pub const MINOR_VERSION: u8 = 3;
pub const MINOR_VERSION: u8 = 4;
pub const PATCH_VERSION: u8 = 0;

0 comments on commit c81b22d

Please sign in to comment.