Skip to content

Commit

Permalink
Prepare for v0.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bluk committed Sep 29, 2023
1 parent a4bfc6c commit 11f8ee5
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use case) can be built.

```toml
[dependencies]
gen_value = "0.6.0"
gen_value = "0.7.0"
```

## Examples
Expand Down Expand Up @@ -186,4 +186,4 @@ dual licensed as above, without any additional terms or conditions.
[Vec]: https://doc.rust-lang.org/std/vec/struct.Vec.html
[generational_arena]: https://crates.io/crates/generational-arena
[gen_vec]: https://crates.io/crates/gen-vec
[rustconf_2018_closing_keynote]: https://www.youtube.com/watch?v=aKLntZcp27M
[rustconf_2018_closing_keynote]: https://www.youtube.com/watch?v=aKLntZcp27M
25 changes: 23 additions & 2 deletions gen_value/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## [0.7.0] - 2023-09-29

### Added

- Add `UnmanagedGenVec::set_gen()` to set the generation for an index.

Allow directly setting the generation in extreme cases. The method
should not be used except in edge cases where an index has exhausted
all generations and all generational indexes have been dropped.

- Set Minimum Supported Rust Version (MSRV) to `1.56.0`

### Updated

- Separate benchmark code into separate crate

### Removed

- Remove `thiserror` dependency and implement Error trait directly

## [0.6.0] - 2022-04-22

### Updated
Expand Down Expand Up @@ -103,10 +123,11 @@

- Initial release

[Unreleased]: https://github.com/bluk/gen_value/compare/v0.5.0...HEAD
[Unreleased]: https://github.com/bluk/gen_value/compare/v0.7.0...HEAD
[0.7.0]: https://github.com/bluk/gen_value/compare/v0.6.0...v0.7.0
[0.6.0]: https://github.com/bluk/gen_value/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/bluk/gen_value/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/bluk/gen_value/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/bluk/gen_value/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/bluk/gen_value/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/bluk/gen_value/releases/tag/v0.1.0
[0.1.0]: https://github.com/bluk/gen_value/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion gen_value/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ name = "gen_value"
readme = "README.md"
repository = "https://github.com/bluk/gen_value"
rust-version = "1.56.0"
version = "0.6.0"
version = "0.7.0"

[features]
default = ["std"]
Expand Down
4 changes: 2 additions & 2 deletions gen_value/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use case) can be built.

```toml
[dependencies]
gen_value = "0.6.0"
gen_value = "0.7.0"
```

## Examples
Expand Down Expand Up @@ -186,4 +186,4 @@ dual licensed as above, without any additional terms or conditions.
[Vec]: https://doc.rust-lang.org/std/vec/struct.Vec.html
[generational_arena]: https://crates.io/crates/generational-arena
[gen_vec]: https://crates.io/crates/gen-vec
[rustconf_2018_closing_keynote]: https://www.youtube.com/watch?v=aKLntZcp27M
[rustconf_2018_closing_keynote]: https://www.youtube.com/watch?v=aKLntZcp27M

0 comments on commit 11f8ee5

Please sign in to comment.