Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.6.3 #37

Merged
merged 1 commit into from
Mar 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 <jeremylarkin@gmail.com>"]
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/
Loading