From d41ee247f2f097c7f9c8e4730b7dd884734f1ee5 Mon Sep 17 00:00:00 2001 From: Nathan Vegdahl Date: Wed, 18 Oct 2023 22:24:22 +0200 Subject: [PATCH] Prepare for release v1.6.1. --- CHANGELOG.md | 11 +++++++++-- Cargo.toml | 4 ++-- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8ceeeb1..92a4f1be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ ## [Unreleased] +## [1.6.1] - 2023-10-18 + +- Fixed test code that was incorrect on some platforms / with some configurations. +- Minor documentation improvements. + + ## [1.6.0] - 2023-02-01 ### New features @@ -324,7 +330,8 @@ - Added a changelog file. -[Unreleased]: https://github.com/cessen/ropey/compare/v1.6.0...HEAD +[Unreleased]: https://github.com/cessen/ropey/compare/v1.6.1...HEAD +[1.6.1]: https://github.com/cessen/ropey/compare/v1.6.0...v1.6.1 [1.6.0]: https://github.com/cessen/ropey/compare/v1.5.1...v1.6.0 [1.5.1]: https://github.com/cessen/ropey/compare/v1.5.0...v1.5.1 [1.5.0]: https://github.com/cessen/ropey/compare/v1.4.1...v1.5.0 @@ -356,4 +363,4 @@ [0.5.4]: https://github.com/cessen/ropey/compare/v0.5.3...v0.5.4 [0.5.3]: https://github.com/cessen/ropey/compare/v0.5.2...v0.5.3 [0.5.2]: https://github.com/cessen/ropey/compare/v0.5.1...v0.5.2 -[0.5.1]: https://github.com/cessen/ropey/releases/tag/v0.5.1 \ No newline at end of file +[0.5.1]: https://github.com/cessen/ropey/releases/tag/v0.5.1 diff --git a/Cargo.toml b/Cargo.toml index cf2db798..7d761893 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ropey" -version = "1.6.0" +version = "1.6.1" authors = ["Nathan Vegdahl "] description = "A fast and robust text rope for Rust" documentation = "https://docs.rs/ropey" @@ -24,7 +24,7 @@ small_chunks = [] [dependencies] smallvec = "1.0.0" -str_indices = { version = "0.4.0", default-features = false } +str_indices = { version = "0.4", default-features = false } [dev-dependencies] rand = "0.8"