Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0"
".": "0.1.1"
}
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [0.1.1](https://github.com/nvandessel/sproink/compare/sproink-v0.1.0...sproink-v0.1.1) (2026-04-23)


### Bug Fixes

* address remaining code review gaps (14 issues) ([#31](https://github.com/nvandessel/sproink/issues/31)) ([52acea7](https://github.com/nvandessel/sproink/commit/52acea788e4b97b1b462ba7acc4ca4c059e94dff))
* audit round 2 — config validation, distance parity, FFI hardening ([#30](https://github.com/nvandessel/sproink/issues/30)) ([9bba357](https://github.com/nvandessel/sproink/commit/9bba35752314a78c70b08d3d66fa9072274d6645))
* complete final review gaps (I3, I16) and fix staticlib packaging ([#33](https://github.com/nvandessel/sproink/issues/33)) ([ebfb82b](https://github.com/nvandessel/sproink/commit/ebfb82bf71d44ef27de070a2e19abef8bd5f95df))
* complete sproink review — engine, tests, affinity, hebbian, FFI, CI/CD ([#28](https://github.com/nvandessel/sproink/issues/28)) ([a7cca87](https://github.com/nvandessel/sproink/commit/a7cca8743e15ff6b61b86952e607243e113d2732))
* **ffi:** eliminate UB, use u8 for bool param, reject invalid edge kinds ([#27](https://github.com/nvandessel/sproink/issues/27)) ([c8053b7](https://github.com/nvandessel/sproink/commit/c8053b70ab1443fcdd5471000eb2ce439218459d))
* return Result from CsrGraph::build with bounds and overflow validation ([#18](https://github.com/nvandessel/sproink/issues/18)) ([c8eabb8](https://github.com/nvandessel/sproink/commit/c8eabb8731edf5296c2f82d0d51e388e351741e9))
* **types:** enforce serde validation and canonicalize -0.0 ([#17](https://github.com/nvandessel/sproink/issues/17)) ([3a2d683](https://github.com/nvandessel/sproink/commit/3a2d683fb3c0e0facfce2e9bf90c10dbc42bbcd3))

## 0.1.0 (2026-04-07)


Expand All @@ -19,4 +32,3 @@
### Refactoring

* simplify and polish after code review ([fddc781](https://github.com/nvandessel/sproink/commit/fddc7816b7dfd41df4d57280444b75d12aa98dcb))

2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sproink"
version = "0.1.0"
version = "0.1.1"
edition = "2024"
rust-version = "1.85"
description = "In-memory spreading activation engine with CSR graph"
Expand Down
Loading