From 3d1b03b33bc2169cdd076cfdd7cb813bb601f212 Mon Sep 17 00:00:00 2001 From: Jeremy Larkin Date: Wed, 13 Mar 2024 18:32:11 -0700 Subject: [PATCH] release 0.6.3 --- CHANGELOG.md | 10 +++++++++- Cargo.toml | 2 +- README.md | 26 +++++++++++++------------- 3 files changed, 23 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c53fb6..659c3ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.3] - 2024-03-13 +- Update some `Size` functions to be `const` +- Add or improve `AsMut` and `AsRef` implementations +- Add `Ring::clear()` method +- Add passthrough implementations for `Read` and `Write` when possible +- Improve the `BufWriter::into_inner()` + ## [0.6.2] - 2024-03-08 - Update dependencies @@ -49,7 +56,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Stopped using deprecated examples where possible - Return the `File` object when `open`ing from a path -[Unreleased]: https://github.com/kalamay/vmap-rs/compare/v0.6.2...HEAD +[Unreleased]: https://github.com/kalamay/vmap-rs/compare/v0.6.3...HEAD +[0.6.3]: https://github.com/kalamay/vmap-rs/compare/v0.6.2...v0.6.3 [0.6.2]: https://github.com/kalamay/vmap-rs/compare/v0.6.1...v0.6.2 [0.6.1]: https://github.com/kalamay/vmap-rs/compare/v0.6.0...v0.6.1 [0.6.0]: https://github.com/kalamay/vmap-rs/compare/v0.5.1...v0.6.0 diff --git a/Cargo.toml b/Cargo.toml index 24c4d29..ff24b4b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vmap" -version = "0.6.2" +version = "0.6.3" authors = ["Jeremy Larkin "] license = "MIT" repository = "https://github.com/kalamay/vmap-rs" diff --git a/README.md b/README.md index 2bab3a6..7f0c0a3 100644 --- a/README.md +++ b/README.md @@ -122,17 +122,17 @@ assert_eq!(line, "this is test line 2\n"); write!(&mut buf, "this is test line {}\n", i)?; ``` -[`.flush()`]: https://docs.rs/vmap/0.6.2/vmap/struct.MapMut.html#method.flush -[`.into_map()`]: https://docs.rs/vmap/0.6.2/vmap/struct.MapMut.html#method.into_map -[`.into_map_mut()`]: https://docs.rs/vmap/0.6.2/vmap/struct.Map.html#method.into_map_mut -[`BufReader`]: https://docs.rs/vmap/0.6.2/vmap/io/struct.BufReader.html -[`BufWriter`]: https://docs.rs/vmap/0.6.2/vmap/io/struct.BufWriter.html -[`InfiniteRing`]: https://docs.rs/vmap/0.6.2/vmap/io/struct.InfiniteRing.html -[`Map::with_options()`]: https://docs.rs/vmap/0.6.2/vmap/struct.Map.html#method.with_options -[`MapMut::with_options()`]: https://docs.rs/vmap/0.6.2/vmap/struct.MapMut.html#method.with_options -[`MapMut`]: https://docs.rs/vmap/0.6.2/vmap/struct.MapMut.html -[`Map`]: https://docs.rs/vmap/0.6.2/vmap/struct.Map.html -[`Options`]: https://docs.rs/vmap/0.6.2/vmap/struct.Options.html -[`Ring`]: https://docs.rs/vmap/0.6.2/vmap/io/struct.Ring.html -[`vmap::io`]: https://docs.rs/vmap/0.6.2/vmap/io/index.html +[`.flush()`]: https://docs.rs/vmap/0.6.3/vmap/struct.MapMut.html#method.flush +[`.into_map()`]: https://docs.rs/vmap/0.6.3/vmap/struct.MapMut.html#method.into_map +[`.into_map_mut()`]: https://docs.rs/vmap/0.6.3/vmap/struct.Map.html#method.into_map_mut +[`BufReader`]: https://docs.rs/vmap/0.6.3/vmap/io/struct.BufReader.html +[`BufWriter`]: https://docs.rs/vmap/0.6.3/vmap/io/struct.BufWriter.html +[`InfiniteRing`]: https://docs.rs/vmap/0.6.3/vmap/io/struct.InfiniteRing.html +[`Map::with_options()`]: https://docs.rs/vmap/0.6.3/vmap/struct.Map.html#method.with_options +[`MapMut::with_options()`]: https://docs.rs/vmap/0.6.3/vmap/struct.MapMut.html#method.with_options +[`MapMut`]: https://docs.rs/vmap/0.6.3/vmap/struct.MapMut.html +[`Map`]: https://docs.rs/vmap/0.6.3/vmap/struct.Map.html +[`Options`]: https://docs.rs/vmap/0.6.3/vmap/struct.Options.html +[`Ring`]: https://docs.rs/vmap/0.6.3/vmap/io/struct.Ring.html +[`vmap::io`]: https://docs.rs/vmap/0.6.3/vmap/io/index.html [`vmap`]: https://docs.rs/vmap/