Skip to content

Commit 50948d0

Browse files
authored
chore: release (#125)
* chore: release * chore: Update book for release --------- Co-authored-by: Bryn Cooke <747836+BrynCooke@users.noreply.github.com>
1 parent dcb2fad commit 50948d0

File tree

12 files changed

+147
-141
lines changed

12 files changed

+147
-141
lines changed

Cargo.lock

Lines changed: 85 additions & 125 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

graph-api-benches/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.2.1] - 2025-06-13
6+
7+
### 🐛 Bug Fixes
8+
9+
- *(deps)* Update rust crate criterion to 0.6 (#99)
10+
11+
### ⚙️ Miscellaneous Tasks
12+
13+
- Clippy (#108)
14+
15+
516
## [0.2.0] - 2025-04-20
617

718
### 🚀 Features

graph-api-benches/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graph-api-benches"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2024"
55
description = "Benchmarking utilities and performance tests for the graph-api ecosystem"
66
authors = ["Bryn Cooke"]
@@ -28,12 +28,12 @@ bench = false
2828

2929

3030
[dependencies]
31-
graph-api-lib = { version = "0.2.0", path = "../graph-api-lib" }
31+
graph-api-lib = { version = "0.2.1", path = "../graph-api-lib" }
3232
graph-api-derive = { version = "0.1.4", path = "../graph-api-derive" }
3333
uuid = { version = "1.11.0", features = ["v4"] }
3434
criterion = { version = "0.6", features = ["html_reports"] }
3535
rand = { version = "0.9" }
36-
graph-api-test = { version = "0.2.0", path = "../graph-api-test" }
36+
graph-api-test = { version = "0.2.1", path = "../graph-api-test" }
3737

3838
[dev-dependencies]
3939
criterion = { version = "0.6", features = ["html_reports"] }

graph-api-book/book.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ git-repository-icon = "fa-github"
1313
[output.linkcheck]
1414

1515
[preprocessor.variables.variables]
16-
version = "0.2.0" # Legacy variable - will be removed once all md files are updated
17-
lib_version = "0.2.0"
16+
version = "0.2.1" # Legacy variable - will be removed once all md files are updated
17+
lib_version = "0.2.1"
1818
derive_version = "0.1.4"
19-
simplegraph_version = "0.2.1"
20-
petgraph_version = "0.1.5"
21-
test_version = "0.2.0"
22-
benches_version = "0.2.0"
19+
simplegraph_version = "0.2.2"
20+
petgraph_version = "0.1.6"
21+
test_version = "0.2.1"
22+
benches_version = "0.2.1"

graph-api-lib/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.2.1] - 2025-06-13
6+
7+
### 🚀 Features
8+
9+
- Add boxed step for walker type erasure to improve compilation performance
10+
11+
### ⚙️ Miscellaneous Tasks
12+
13+
- Clippy (#108)
14+
15+
516
## [0.2.0] - 2025-04-20
617

718
### 🚀 Features

graph-api-lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graph-api-lib"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2024"
55
description = "Core library for the graph-api ecosystem - a flexible, type-safe API for working with in-memory graphs in Rust"
66
authors = ["Bryn Cooke"]

graph-api-petgraph/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.1.6] - 2025-06-13
6+
7+
### 🐛 Bug Fixes
8+
9+
- *(deps)* Update rust crate criterion to 0.6 (#99)
10+
11+
512
## [0.1.5] - 2025-04-20
613

714
### ⚙️ Miscellaneous Tasks

graph-api-petgraph/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graph-api-petgraph"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
edition = "2024"
55
description = "Integration between graph-api and petgraph - use graph-api's traversal system with petgraph structures"
66
authors = ["Bryn Cooke"]
@@ -15,7 +15,7 @@ categories = ["data-structures", "algorithms"]
1515
bench = false
1616

1717
[dependencies]
18-
graph-api-lib = { version = "0.2.0", path = "../graph-api-lib", features = ["petgraph"] }
18+
graph-api-lib = { version = "0.2.1", path = "../graph-api-lib", features = ["petgraph"] }
1919
petgraph = { workspace = true }
2020

2121
[dev-dependencies]

graph-api-simplegraph/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.2.2] - 2025-06-13
6+
7+
### 🐛 Bug Fixes
8+
9+
- *(deps)* Update rust crate fastbloom to 0.10.0 (#95)
10+
- *(deps)* Update rust crate fastbloom to 0.11.0 (#98)
11+
- *(deps)* Update rust crate criterion to 0.6 (#99)
12+
- *(deps)* Update rust crate fastbloom to 0.12.0 (#106)
13+
14+
515
## [0.2.1] - 2025-04-21
616

717
### 📚 Documentation

graph-api-simplegraph/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graph-api-simplegraph"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition = "2024"
55
description = "A simple, efficient graph implementation for the graph-api ecosystem with support for indexing"
66
authors = ["Bryn Cooke"]
@@ -16,7 +16,7 @@ categories = ["data-structures", "memory-management"]
1616
bench = false
1717

1818
[dependencies]
19-
graph-api-lib = { version = "0.2.0", path = "../graph-api-lib" }
19+
graph-api-lib = { version = "0.2.1", path = "../graph-api-lib" }
2020
paste = "1.0.15"
2121
fastbloom = "0.12.0"
2222
rphonetic = "3.0.1"

0 commit comments

Comments
 (0)