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
18 changes: 9 additions & 9 deletions 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
Expand Up @@ -15,7 +15,7 @@ authors = [
]
edition = "2024"
rust-version = "1.94.1"
version = "0.30.1"
version = "0.31.0"
repository = "https://github.com/zspacelabs/bunsen"
license = "MIT or Apache-2.0"

Expand Down
6 changes: 6 additions & 0 deletions crates/bunsen-firehose-image/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]

## [0.31.0](https://github.com/zspacelabs/bunsen/compare/bunsen-firehose-image-v0.30.1...bunsen-firehose-image-v0.31.0) - 2026-08-06

### Other

- *(tensor)* rename `to_data_convert` to `to_data_as` and `into_data_convert` to `into_data_as`, add `to_vec_as` and `into_vec_as` extensions for improved TensorData conversion methods ([#156](https://github.com/zspacelabs/bunsen/pull/156))

## [0.22.0](https://github.com/zspacelabs/bunsen/compare/bunsen-firehose-image-v0.21.3...bunsen-firehose-image-v0.22.0) - 2026-06-05

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/bunsen-firehose-image/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ workspace = true

[dependencies]
burn = { workspace = true, features = ["dataset", "vision", "autotune"] }
bunsen-firehose = { version = "0.30.1", path = "../bunsen-firehose" }
bunsen-firehose = { version = "0.31.0", path = "../bunsen-firehose" }

serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
Expand Down
12 changes: 12 additions & 0 deletions crates/bunsen/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.31.0](https://github.com/zspacelabs/bunsen/compare/bunsen-v0.30.1...bunsen-v0.31.0) - 2026-08-06

### Other

- *(tensor)* rename `to_data_convert` to `to_data_as` and `into_data_convert` to `into_data_as`, add `to_vec_as` and `into_vec_as` extensions for improved TensorData conversion methods ([#156](https://github.com/zspacelabs/bunsen/pull/156))
- *(tensor)* rename `TensorDataIndexView` and `TensorDataIndexMutView` to `TensorDataView` and `TensorDataViewMut`, add `TensorDataViewExt` with `expect_view` and `try_view` methods, and update all references accordingly ([#155](https://github.com/zspacelabs/bunsen/pull/155))
- *(tensor)* unify `to_data_convert` and `to_data_cast` methods across tensor operations, update usage in lbm2d_vis, conway_vis, and life2d implementations for consistency ([#154](https://github.com/zspacelabs/bunsen/pull/154))
- *(tensor)* simplify `select_dim` signature by replacing generic type constraints with `impl AsIndex`, update related usage in `silero_vad` module ([#152](https://github.com/zspacelabs/bunsen/pull/152))
- *(attention_mask)* replace `unsqueeze` and `unsqueeze_dim` with `unsqueeze_dims` for cleaner dimension handling ([#150](https://github.com/zspacelabs/bunsen/pull/150))
- *(tensor)* rename `release` method to `extract` across tensor operations and update references for clarity ([#149](https://github.com/zspacelabs/bunsen/pull/149))
- *(tensor)* replace `bounded_elem` with `in_range_scalar` and add `in_range` for improved range-checking flexibility ([#148](https://github.com/zspacelabs/bunsen/pull/148))

## [0.30.1](https://github.com/zspacelabs/bunsen/compare/bunsen-v0.30.0...bunsen-v0.30.1) - 2026-07-24

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions crates/bunsen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ flex = ["burn/flex"]


[dependencies]
bunsen-contracts-macros = { version = "0.30.1", path = "../bunsen-contracts-macros" }
bunsen-onnx-gen = { version = "0.30.1", path = "../bunsen-onnx-gen", optional = true }
bunsen-contracts-macros = { version = "0.31.0", path = "../bunsen-contracts-macros" }
bunsen-onnx-gen = { version = "0.31.0", path = "../bunsen-onnx-gen", optional = true }

tracing = { workspace = true, optional = true }
tracing-test = { workspace = true, optional = true }
Expand Down
Loading