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
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.1+rtx1.6] - 2026-09-10

This is a hotfix release to fix the `-rtx1.5` suffix on crates.io for the previous release.
It should have been `-rtx1.6` corresponding to the supported TensorRT RTX version.

### 🚀 Features

- Allow setting GpuAllocator for Runtime (#139)
- Add `Builder::set_gpu_allocator` (#140)

### 💼 Other

- *(trtexec-rs)* Switching back to RustNN main (#138)
- Fix wrong version suffix from rtx1.5 to rtx1.6 (#141)

## [0.8.0+rtx1.6] - 2026-07-30

See what's new in TensorRT RTX 1.6 https://docs.nvidia.com/deeplearning/tensorrt-rtx/latest/index.html#what-s-new-in-nvidia-tensorrt-rtx-1-6
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["trtx-sys", "trtx", "trtexec-rs"]
resolver = "2"

[workspace.package]
version = "0.8.0+rtx1.6"
version = "0.8.1+rtx1.6"
edition = "2021"
license = "Apache-2.0"
authors = ["Tarek Ziade", "Markus Tavenrath", "Stephan Seitz"]
Expand Down
4 changes: 2 additions & 2 deletions trtexec-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ pretty_env_logger = "0.5"

# To upgrade the trtx version to new major version, create a PR with that bump to the RustNN repo
# and switch the RustNN dep temporarily to that branch until RustNN main has that version bump
trtx = { version = "0.8.0", path = "../trtx", default-features = true }
trtx-sys = { version = "0.8.0", path = "../trtx-sys", default-features = true }
trtx = { version = "0.8.1", path = "../trtx", default-features = true }
trtx-sys = { version = "0.8.1", path = "../trtx-sys", default-features = true }
indicatif = "0.18"
anyhow = { version = "1.0", features = ["backtrace"] }
clap = { version = "4.6", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion trtx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keywords = ["tensorrt", "inference", "deep-learning", "nvidia", "gpu"]
categories = ["api-bindings", "science"]

[dependencies]
trtx-sys = { version = "0.8.0", path = "../trtx-sys", default-features = false }
trtx-sys = { version = "0.8.1", path = "../trtx-sys", default-features = false }
thiserror = "2.0"
cxx = "1.0"
libc = "0.2"
Expand Down