-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6917760
commit 4c0ddc8
Showing
5 changed files
with
20 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "triple_arena" | ||
# change the dependency used by `triple_arena_render` when the minor version or higher is changed | ||
version = "0.12.1" | ||
version = "0.13.0" | ||
edition = "2021" | ||
authors = ["Aaron Kutch <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -11,6 +11,7 @@ documentation = "https://docs.rs/triple_arena" | |
description = "Regular, Chain, Surjection, and Ordered Arenas supporting non-Clone types, deletion, and more" | ||
keywords = ["arena", "generation", "no_std"] | ||
categories = ["memory-management", "data-structures", "no-std"] | ||
rust-version = "1.70" | ||
|
||
[dependencies] | ||
#recasting = { path = "../../recasting", default-features = false, features = ["alloc"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Changelog | ||
|
||
## [0.13.0] - TODO | ||
## [0.13.0] - 2024-02-20 | ||
### Crate | ||
- `triple_arena` 0.13 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "triple_arena_render" | ||
version = "0.12.0" | ||
version = "0.13.0" | ||
edition = "2021" | ||
authors = ["Aaron Kutch <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -12,4 +12,4 @@ keywords = ["arena", "graph", "render", "visualize"] | |
categories = ["rendering::data-formats", "graphics", "visualization"] | ||
|
||
[dependencies] | ||
triple_arena = { path = "../triple_arena", version = "0.12" } | ||
triple_arena = { path = "../triple_arena", version = "0.13" } |