Skip to content

Commit d41ee24

Browse files
committed
Prepare for release v1.6.1.
1 parent c185ec5 commit d41ee24

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

CHANGELOG.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
## [Unreleased]
55

66

7+
## [1.6.1] - 2023-10-18
8+
9+
- Fixed test code that was incorrect on some platforms / with some configurations.
10+
- Minor documentation improvements.
11+
12+
713
## [1.6.0] - 2023-02-01
814

915
### New features
@@ -324,7 +330,8 @@
324330
- Added a changelog file.
325331

326332

327-
[Unreleased]: https://github.com/cessen/ropey/compare/v1.6.0...HEAD
333+
[Unreleased]: https://github.com/cessen/ropey/compare/v1.6.1...HEAD
334+
[1.6.1]: https://github.com/cessen/ropey/compare/v1.6.0...v1.6.1
328335
[1.6.0]: https://github.com/cessen/ropey/compare/v1.5.1...v1.6.0
329336
[1.5.1]: https://github.com/cessen/ropey/compare/v1.5.0...v1.5.1
330337
[1.5.0]: https://github.com/cessen/ropey/compare/v1.4.1...v1.5.0
@@ -356,4 +363,4 @@
356363
[0.5.4]: https://github.com/cessen/ropey/compare/v0.5.3...v0.5.4
357364
[0.5.3]: https://github.com/cessen/ropey/compare/v0.5.2...v0.5.3
358365
[0.5.2]: https://github.com/cessen/ropey/compare/v0.5.1...v0.5.2
359-
[0.5.1]: https://github.com/cessen/ropey/releases/tag/v0.5.1
366+
[0.5.1]: https://github.com/cessen/ropey/releases/tag/v0.5.1

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ropey"
3-
version = "1.6.0"
3+
version = "1.6.1"
44
authors = ["Nathan Vegdahl <[email protected]>"]
55
description = "A fast and robust text rope for Rust"
66
documentation = "https://docs.rs/ropey"
@@ -24,7 +24,7 @@ small_chunks = []
2424

2525
[dependencies]
2626
smallvec = "1.0.0"
27-
str_indices = { version = "0.4.0", default-features = false }
27+
str_indices = { version = "0.4", default-features = false }
2828

2929
[dev-dependencies]
3030
rand = "0.8"

0 commit comments

Comments
 (0)