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

Commit

Permalink
pump version to 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
burmecia committed Apr 25, 2018
1 parent 08779c0 commit f4d5a38
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zbox"
version = "0.5.0"
version = "0.5.1"
authors = ["Bo Lu"]
description = "Zbox is a zero-details, privacy-focused embeddable file system."
documentation = "https://docs.rs/zbox"
Expand Down Expand Up @@ -33,20 +33,20 @@ vio-test = []

[dependencies]
bytes = "0.4.6"
env_logger = "0.5.4"
env_logger = "0.5.9"
log = "0.4.1"
lz4 = "1.22.0"
rmp-serde = "0.13.7"
serde = "1.0.27"
serde_derive = "1.0.27"
serde = "1.0.43"
serde_derive = "1.0.43"

[dependencies.linked-hash-map]
version = "0.5.1"
features = ["serde_impl"]

[dev-dependencies]
tempdir = "0.3.6"
tempdir = "0.3.7"
rand = "0.4.1"

[build-dependencies]
pkg-config = "0.3.9"
pkg-config = "0.3.11"
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.5.0"
zbox = "0.5.1"
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,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], [5])
m4_define([zbox_version_patch], [0])
m4_define([zbox_version_patch], [1])

AC_PREREQ([2.69])
AC_INIT([libzbox],
Expand Down
2 changes: 2 additions & 0 deletions src/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ impl<'a> Seek for VersionReader<'a> {
/// operations, [`finish`] must be called to create a new version.
///
/// ## Examples
///
/// ```
/// # use zbox::{init_env, Result, RepoOpener};
/// use std::io::prelude::*;
Expand Down Expand Up @@ -153,6 +154,7 @@ impl<'a> Seek for VersionReader<'a> {
/// internally to create a new version.
///
/// ## Examples
///
/// ```
/// # #![allow(unused_mut, unused_variables)]
/// # use zbox::{init_env, Result, RepoOpener};
Expand Down

0 comments on commit f4d5a38

Please sign in to comment.