Skip to content
Merged
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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand All @@ -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
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <nik.parcell@gmail.com>", "George Lee Patterson <patterson.george@gmail.com>"]
Expand All @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down
10 changes: 3 additions & 7 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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))


2 changes: 1 addition & 1 deletion crates/nabled-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions crates/nabled-linalg/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ primitives, and matrix-function algorithms.

```toml
[dependencies]
nabled-linalg = "0.0.6"
nabled-linalg = "0.0.7"
```

## Optional Features
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions crates/nabled-ml/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
Loading