diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0487d32..0c5a953 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,6 +35,20 @@ jobs: cargo r --bin render1 cargo r --example equation + msrv_test_suite: + runs-on: ubuntu-latest + env: + RUSTFLAGS: -D warnings + steps: + - uses: actions/checkout@v2 + - name: Install Rust components + run: | + rustup set profile minimal + rustup install nightly-2023-04-14 + - name: Run test suite + run: | + cargo build --no-default-features + rustfmt: name: Rustfmt runs-on: ubuntu-latest diff --git a/triple_arena/CHANGELOG.md b/triple_arena/CHANGELOG.md index fa345bf..201062b 100644 --- a/triple_arena/CHANGELOG.md +++ b/triple_arena/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [0.13.0] - TODO +## [0.13.0] - 2024-02-20 ### Fixes - Fixed that the `PartialEq` impl of `OrdArena` was indexing the wrong way and could cause panics - Fixed more issues with `ptr_struct` import collisions diff --git a/triple_arena/Cargo.toml b/triple_arena/Cargo.toml index a69e1a9..368b7c8 100644 --- a/triple_arena/Cargo.toml +++ b/triple_arena/Cargo.toml @@ -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 "] 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"] } diff --git a/triple_arena_render/CHANGELOG.md b/triple_arena_render/CHANGELOG.md index 35c69a9..279e6f3 100644 --- a/triple_arena_render/CHANGELOG.md +++ b/triple_arena_render/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [0.13.0] - TODO +## [0.13.0] - 2024-02-20 ### Crate - `triple_arena` 0.13 diff --git a/triple_arena_render/Cargo.toml b/triple_arena_render/Cargo.toml index d6770a8..96ae9a2 100644 --- a/triple_arena_render/Cargo.toml +++ b/triple_arena_render/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "triple_arena_render" -version = "0.12.0" +version = "0.13.0" edition = "2021" authors = ["Aaron Kutch "] 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" }