From 1f7e72ad83d50a37d4e46e6d79ba020e7b5e5aa2 Mon Sep 17 00:00:00 2001 From: Jeff Parsons Date: Fri, 28 Jan 2022 00:42:48 +1100 Subject: [PATCH] Prepare 1.0.0 release --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 78bab24..f8db87c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +### v1.0.0 (2022-01-28) + +It's time. (No functional change.) + + ### v0.1.14 (2021-11-16) - **Features**: diff --git a/Cargo.toml b/Cargo.toml index ded417b..46127e3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rangemap" -version = "0.1.14" +version = "1.0.0" authors = ["Jeff Parsons "] edition = "2018" license = "MIT/Apache-2.0" diff --git a/README.md b/README.md index 58a31e1..7eb17f0 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ You can enable the **serde1** feature in your _Cargo.toml_ file like so: ```toml [dependencies] -rangemap = { version = "0.1.14", features = ["serde1"] } +rangemap = { version = "1", features = ["serde1"] } ``` diff --git a/src/lib.rs b/src/lib.rs index 561357d..303c1b0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -98,7 +98,7 @@ You can enable the **serde1** feature in your _Cargo.toml_ file like so: ```toml [dependencies] -rangemap = { version = "0.1.14", features = ["serde1"] } +rangemap = { version = "1", features = ["serde1"] } ```