Skip to content

Commit

Permalink
release version 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kalamay committed Apr 2, 2022
1 parent 5e0fbd2 commit b8a5f9c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 15 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.1] - 2021-04-02
- Fix circular buffer for non-power-of-2 sizes [@mbehr1](https://github.com/mbehr1)

## [0.5.0] - 2021-12-24
- Remove deprecated code
- Update to 2021 rust edition
Expand Down Expand Up @@ -36,7 +39,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.5.0...HEAD
[Unreleased]: https://github.com/kalamay/vmap-rs/compare/v0.5.1...HEAD
[0.5.1]: https://github.com/kalamay/vmap-rs/compare/v0.5.0...v0.5.1
[0.5.0]: https://github.com/kalamay/vmap-rs/compare/v0.4.4...v0.5.0
[0.4.4]: https://github.com/kalamay/vmap-rs/compare/v0.4.3...v0.4.4
[0.4.3]: https://github.com/kalamay/vmap-rs/compare/v0.4.2...v0.4.3
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.5.0"
version = "0.5.1"
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 @@ -118,17 +118,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.5.0/vmap/struct.MapMut.html#method.flush
[`.into_map()`]: https://docs.rs/vmap/0.5.0/vmap/struct.MapMut.html#method.into_map
[`.into_map_mut()`]: https://docs.rs/vmap/0.5.0/vmap/struct.Map.html#method.into_map_mut
[`BufReader`]: https://docs.rs/vmap/0.5.0/vmap/io/struct.BufReader.html
[`BufWriter`]: https://docs.rs/vmap/0.5.0/vmap/io/struct.BufWriter.html
[`InfiniteRing`]: https://docs.rs/vmap/0.5.0/vmap/io/struct.InfiniteRing.html
[`Map::with_options()`]: https://docs.rs/vmap/0.5.0/vmap/struct.Map.html#method.with_options
[`MapMut::with_options()`]: https://docs.rs/vmap/0.5.0/vmap/struct.MapMut.html#method.with_options
[`MapMut`]: https://docs.rs/vmap/0.5.0/vmap/struct.MapMut.html
[`Map`]: https://docs.rs/vmap/0.5.0/vmap/struct.Map.html
[`Options`]: https://docs.rs/vmap/0.5.0/vmap/struct.Options.html
[`Ring`]: https://docs.rs/vmap/0.5.0/vmap/io/struct.Ring.html
[`vmap::io`]: https://docs.rs/vmap/0.5.0/vmap/io/index.html
[`.flush()`]: https://docs.rs/vmap/0.5.1/vmap/struct.MapMut.html#method.flush
[`.into_map()`]: https://docs.rs/vmap/0.5.1/vmap/struct.MapMut.html#method.into_map
[`.into_map_mut()`]: https://docs.rs/vmap/0.5.1/vmap/struct.Map.html#method.into_map_mut
[`BufReader`]: https://docs.rs/vmap/0.5.1/vmap/io/struct.BufReader.html
[`BufWriter`]: https://docs.rs/vmap/0.5.1/vmap/io/struct.BufWriter.html
[`InfiniteRing`]: https://docs.rs/vmap/0.5.1/vmap/io/struct.InfiniteRing.html
[`Map::with_options()`]: https://docs.rs/vmap/0.5.1/vmap/struct.Map.html#method.with_options
[`MapMut::with_options()`]: https://docs.rs/vmap/0.5.1/vmap/struct.MapMut.html#method.with_options
[`MapMut`]: https://docs.rs/vmap/0.5.1/vmap/struct.MapMut.html
[`Map`]: https://docs.rs/vmap/0.5.1/vmap/struct.Map.html
[`Options`]: https://docs.rs/vmap/0.5.1/vmap/struct.Options.html
[`Ring`]: https://docs.rs/vmap/0.5.1/vmap/io/struct.Ring.html
[`vmap::io`]: https://docs.rs/vmap/0.5.1/vmap/io/index.html
[`vmap`]: https://docs.rs/vmap/

0 comments on commit b8a5f9c

Please sign in to comment.