diff --git a/CHANGELOG.md b/CHANGELOG.md index 57857f3..f01e054 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Refactor + +- Expands ndarrow interface to cover advanced and row-based cases ([4b12dbe](https://github.com/MontOpsInc/nabled/commit/4b12dbe3c9c7d6519a0691fb9a89cb9f4eb40b07)) + +## [0.0.6] - 2026-03-11 + ### Bug Fixes - Finishes the ndarrow facade surface ([ff53071](https://github.com/MontOpsInc/nabled/commit/ff530714774f8e9b13f609c2b65aba08bc2a8600)) @@ -15,6 +21,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Introduces arrow apis through ndarrow ([e077e1d](https://github.com/MontOpsInc/nabled/commit/e077e1d1e95d3f83eb8de6da62e86c6162cbf068)) +### Miscellaneous Tasks + +- Prepare release v0.0.6 ([#20](https://github.com/MontOpsInc/nabled/issues/20)) ([6839724](https://github.com/MontOpsInc/nabled/commit/68397244efd281b254afc0c9d7b1dafc46270253)) + ## [0.0.5] - 2026-03-09 ### Bug Fixes diff --git a/Cargo.toml b/Cargo.toml index 5586a63..4804c1c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ default-members = [ resolver = "3" [workspace.package] -version = "0.0.6" +version = "0.0.7" edition = "2024" rust-version = "1.92" authors = ["Niklaus Parcell ", "George Lee Patterson "] @@ -25,10 +25,10 @@ documentation = "https://docs.rs/nabled" publish = true [workspace.dependencies] -nabled = { path = "crates/nabled", version = "=0.0.6" } -nabled-core = { path = "crates/nabled-core", version = "=0.0.6" } -nabled-linalg = { path = "crates/nabled-linalg", version = "=0.0.6" } -nabled-ml = { path = "crates/nabled-ml", version = "=0.0.6" } +nabled = { path = "crates/nabled", version = "=0.0.7" } +nabled-core = { path = "crates/nabled-core", version = "=0.0.7" } +nabled-linalg = { path = "crates/nabled-linalg", version = "=0.0.7" } +nabled-ml = { path = "crates/nabled-ml", version = "=0.0.7" } approx = "0.5" arrow-array = "58" diff --git a/README.md b/README.md index 9f4c7e5..d810bcf 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Important! Nabled is under active development right now, so the only way to be s ```toml [dependencies] -nabled = "0.0.6" +nabled = "0.0.7" ``` ## Implemented Domains @@ -70,12 +70,12 @@ Review more examples in `crates/nabled/examples`. ```toml [dependencies] -nabled = { version = "0.0.6", features = ["openblas-system"] } +nabled = { version = "0.0.7", features = ["openblas-system"] } ``` ```toml [dependencies] -nabled = { version = "0.0.6", features = ["arrow"] } +nabled = { version = "0.0.7", features = ["arrow"] } ``` Arrow interop notes: diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index a023ed7..ebaf101 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,11 +1,7 @@ -## [0.0.6] - 2026-03-11 +## [0.0.7] - 2026-03-13 -### Bug Fixes +### Refactor -- Finishes the ndarrow facade surface ([ff53071](https://github.com/MontOpsInc/nabled/commit/ff530714774f8e9b13f609c2b65aba08bc2a8600)) - -### Features - -- Introduces arrow apis through ndarrow ([e077e1d](https://github.com/MontOpsInc/nabled/commit/e077e1d1e95d3f83eb8de6da62e86c6162cbf068)) +- Expands ndarrow interface to cover advanced and row-based cases ([4b12dbe](https://github.com/MontOpsInc/nabled/commit/4b12dbe3c9c7d6519a0691fb9a89cb9f4eb40b07)) diff --git a/crates/nabled-core/README.md b/crates/nabled-core/README.md index 068e49d..2cd2ccb 100644 --- a/crates/nabled-core/README.md +++ b/crates/nabled-core/README.md @@ -12,7 +12,7 @@ Core shared types and utilities for the `nabled` workspace. ```toml [dependencies] -nabled-core = "0.0.6" +nabled-core = "0.0.7" ``` ## Docs diff --git a/crates/nabled-linalg/README.md b/crates/nabled-linalg/README.md index dd24adb..0b228e9 100644 --- a/crates/nabled-linalg/README.md +++ b/crates/nabled-linalg/README.md @@ -9,7 +9,7 @@ primitives, and matrix-function algorithms. ```toml [dependencies] -nabled-linalg = "0.0.6" +nabled-linalg = "0.0.7" ``` ## Optional Features @@ -29,7 +29,7 @@ Note: provider requirements depend on provider choice. Static features (`openbla ```toml [dependencies] -nabled-linalg = { version = "0.0.6", features = ["openblas-system"] } +nabled-linalg = { version = "0.0.7", features = ["openblas-system"] } ``` ## Docs diff --git a/crates/nabled-ml/README.md b/crates/nabled-ml/README.md index 54547df..73924f4 100644 --- a/crates/nabled-ml/README.md +++ b/crates/nabled-ml/README.md @@ -14,7 +14,7 @@ ML-oriented numerical algorithms built on ndarray-native `nabled` primitives. ```toml [dependencies] -nabled-ml = "0.0.6" +nabled-ml = "0.0.7" ``` ## Optional Features @@ -32,7 +32,7 @@ Note: provider requirements depend on provider choice. Static features (`openbla ```toml [dependencies] -nabled-ml = { version = "0.0.6", features = ["openblas-system"] } +nabled-ml = { version = "0.0.7", features = ["openblas-system"] } ``` ## Docs