Skip to content

Commit

Permalink
Doc(version): bumped, changelog update.
Browse files Browse the repository at this point in the history
  • Loading branch information
3Hren committed Sep 10, 2015
1 parent f57a3bb commit 97ed8b2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased][unreleased]

## 0.7.1 - 2015-09-11
- Use `to_owned` instead of `to_string` while converting `ValueRef` into `Value`.
This change improves `ValueRef::to_owned()` method performance by approximately 10-20%.
Also after this commit it's cheaper to decode directly into `ValueRef` with further converting to owned value rather
than decoding directly into `Value`.

## 0.7.0 - 2015-08-24
### Changed
- The big single crate has been refactored, which results in three crates: `rmp`, `rmp-serialize` and `rmp-serde`.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -19,7 +19,7 @@ To use `rmp`, first add this to your `Cargo.toml`:

```toml
[dependencies.rmp]
rmp = "0.7.0"
rmp = "0.7.1"
```

Then, add this to your crate root:
Expand Down
2 changes: 1 addition & 1 deletion rmp/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rmp"
version = "0.7.0"
version = "0.7.1"
authors = ["Evgeny Safronov <division494@gmail.com>"]
license = "MIT"
description = "Pure Rust MessagePack serialization implementation"
Expand Down
2 changes: 1 addition & 1 deletion rmp/src/lib.rs
Expand Up @@ -12,7 +12,7 @@
//!
//! ```toml
//! [dependencies.rmp]
//! rmp = "0.7.0"
//! rmp = "0.7.1"
//! ```
//!
//! Then, add this to your crate root:
Expand Down

0 comments on commit 97ed8b2

Please sign in to comment.