Skip to content

Commit

Permalink
release 0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kalamay committed Mar 14, 2024
1 parent 8a6e15f commit 3d1b03b
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 15 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vmap"
version = "0.6.2"
version = "0.6.3"
authors = ["Jeremy Larkin <[email protected]>"]
license = "MIT"
repository = "https://github.com/kalamay/vmap-rs"
Expand Down
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/

0 comments on commit 3d1b03b

Please sign in to comment.