From a767d05764ce6324f155102c5a46d4e53665d29a Mon Sep 17 00:00:00 2001 From: Pyfisch Date: Tue, 2 Jul 2019 10:00:27 +0200 Subject: [PATCH] Release v0.10 --- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 179c1434..1bcb7158 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_cbor" -version = "0.9.0" +version = "0.10.0" authors = [ "Pyfisch ", "Steven Fackler "] diff --git a/README.md b/README.md index afeba300..1ecabc3d 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ of the JSON data model that is small and very fast to parse. Serde CBOR supports Rust 1.31 and up. Add this to your `Cargo.toml`: ```toml [dependencies] -serde_cbor = "0.9" +serde_cbor = "0.10" ``` Storing and loading Rust types is easy and requires only diff --git a/src/lib.rs b/src/lib.rs index db9eb217..dfca186b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,7 +5,7 @@ //! Serde CBOR supports Rust 1.31 and up. Add this to your `Cargo.toml`: //! ```toml //! [dependencies] -//! serde_cbor = "0.9" +//! serde_cbor = "0.10" //! ``` //! //! Storing and loading Rust types is easy and requires only