From ec070c98834d6b763f1464a5fa81f46dc9c53027 Mon Sep 17 00:00:00 2001 From: Stephan Seitz Date: Thu, 10 Sep 2026 16:40:15 +0200 Subject: [PATCH 1/2] publish: update changelog --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa56f57..6eb4ae0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 From 2703caa014f93d95d008b7fb27293a7c53d6b4f9 Mon Sep 17 00:00:00 2001 From: Stephan Seitz Date: Thu, 10 Sep 2026 16:43:38 +0200 Subject: [PATCH 2/2] publish: bump version to v0.8.1 --- Cargo.toml | 2 +- trtexec-rs/Cargo.toml | 4 ++-- trtx/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 68c4d45..df832b9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"] diff --git a/trtexec-rs/Cargo.toml b/trtexec-rs/Cargo.toml index f5b0c83..b6a1035 100644 --- a/trtexec-rs/Cargo.toml +++ b/trtexec-rs/Cargo.toml @@ -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"] } diff --git a/trtx/Cargo.toml b/trtx/Cargo.toml index 1971564..d775264 100644 --- a/trtx/Cargo.toml +++ b/trtx/Cargo.toml @@ -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"