From dd715c8b01eafdfffd6e1023952a4e536cae7659 Mon Sep 17 00:00:00 2001 From: Bo Lu Date: Thu, 23 Jan 2020 17:34:22 +1100 Subject: [PATCH] bump to zboxfs version 0.9.0 --- Cargo.toml | 2 +- README.md | 4 ++-- src/base/mod.rs | 2 +- src/repo.rs | 2 +- src/version.rs | 6 +++--- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2555a8b..5e9829b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/README.md b/README.md index 4c249af..0205e9f 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 diff --git a/src/base/mod.rs b/src/base/mod.rs index b18dced..69a111c 100644 --- a/src/base/mod.rs +++ b/src/base/mod.rs @@ -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()) diff --git a/src/repo.rs b/src/repo.rs index 5fa8c60..62950c4 100644 --- a/src/repo.rs +++ b/src/repo.rs @@ -627,7 +627,7 @@ fn open_file_with_options>( /// /// ```toml /// [dependencies] -/// zbox = { version = "0.8.8", features = ["storage-file"] } +/// zbox = { version = "0.9.0", features = ["storage-file"] } /// ``` /// /// # Create and open `Repo` diff --git a/src/version.rs b/src/version.rs index d73a290..f118ead 100644 --- a/src/version.rs +++ b/src/version.rs @@ -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;