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

Commit

Permalink
bump to zboxfs version 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
burmecia committed Jan 23, 2020
1 parent 9899a9c commit dd715c8
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 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.8.8"
version = "0.9.0"
authors = ["Bo Lu"]
description = "ZboxFS is a zero-details, privacy-focused in-app file system."
documentation = "https://docs.rs/zbox"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ Add the following dependency to your `Cargo.toml`:

```toml
[dependencies]
zbox = "0.8.8"
zbox = "0.9.0"
```

If you don't want to install libsodium by yourself, simply specify
Expand All @@ -201,7 +201,7 @@ verify and build libsodium.

```toml
[dependencies]
zbox = { version = "0.8.8", features = ["libsodium-bundled"] }
zbox = { version = "0.9.0", features = ["libsodium-bundled"] }
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion src/base/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ use env_logger;

/// Get ZboxFS library version string.
///
/// This method return ZboxFS library version as a string, e.g. "ZboxFS v0.8.0".
/// This method return ZboxFS library version as a string, e.g. "ZboxFS v0.9.0".
#[inline]
pub fn zbox_version() -> String {
format!("ZboxFS v{}", Version::lib_version())
Expand Down
2 changes: 1 addition & 1 deletion src/repo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ fn open_file_with_options<P: AsRef<Path>>(
///
/// ```toml
/// [dependencies]
/// zbox = { version = "0.8.8", features = ["storage-file"] }
/// zbox = { version = "0.9.0", features = ["storage-file"] }
/// ```
///
/// # Create and open `Repo`
Expand Down
6 changes: 3 additions & 3 deletions src/version.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/// Define ZboxFS repo version
pub const REPO_MAJOR_VERSION: u8 = 0;
pub const REPO_MINOR_VERSION: u8 = 7;
pub const REPO_MINOR_VERSION: u8 = 8;
pub const REPO_PATCH_VERSION: u8 = 0;

/// Define ZboxFS library version
pub const LIB_MAJOR_VERSION: u8 = 0;
pub const LIB_MINOR_VERSION: u8 = 8;
pub const LIB_PATCH_VERSION: u8 = 8;
pub const LIB_MINOR_VERSION: u8 = 9;
pub const LIB_PATCH_VERSION: u8 = 0;

0 comments on commit dd715c8

Please sign in to comment.