Skip to content

Commit

Permalink
Version 0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronKutch committed Feb 20, 2024
1 parent 6917760 commit 4c0ddc8
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion triple_arena/CHANGELOG.md
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
### 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
Expand Down
3 changes: 2 additions & 1 deletion triple_arena/Cargo.toml
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"
Expand All @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion triple_arena_render/CHANGELOG.md
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

Expand Down
4 changes: 2 additions & 2 deletions triple_arena_render/Cargo.toml
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"
Expand All @@ -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" }

0 comments on commit 4c0ddc8

Please sign in to comment.