Skip to content

Commit 97ed8b2

Browse files
committed
Doc(version): bumped, changelog update.
1 parent f57a3bb commit 97ed8b2

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased][unreleased]
66

7+
## 0.7.1 - 2015-09-11
8+
- Use `to_owned` instead of `to_string` while converting `ValueRef` into `Value`.
9+
This change improves `ValueRef::to_owned()` method performance by approximately 10-20%.
10+
Also after this commit it's cheaper to decode directly into `ValueRef` with further converting to owned value rather
11+
than decoding directly into `Value`.
12+
713
## 0.7.0 - 2015-08-24
814
### Changed
915
- The big single crate has been refactored, which results in three crates: `rmp`, `rmp-serialize` and `rmp-serde`.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To use `rmp`, first add this to your `Cargo.toml`:
1919

2020
```toml
2121
[dependencies.rmp]
22-
rmp = "0.7.0"
22+
rmp = "0.7.1"
2323
```
2424

2525
Then, add this to your crate root:

rmp/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rmp"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
authors = ["Evgeny Safronov <[email protected]>"]
55
license = "MIT"
66
description = "Pure Rust MessagePack serialization implementation"

rmp/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
//!
1313
//! ```toml
1414
//! [dependencies.rmp]
15-
//! rmp = "0.7.0"
15+
//! rmp = "0.7.1"
1616
//! ```
1717
//!
1818
//! Then, add this to your crate root:

0 commit comments

Comments
 (0)