From c7608544d699cc933f671e2b5f1bb90721ee8f33 Mon Sep 17 00:00:00 2001 From: Stephan Seitz Date: Thu, 10 Sep 2026 13:12:55 +0200 Subject: [PATCH] publish: fix wrong version suffix rtx1.5- rtx1.6 We are actually on TRT RTX 1.6. Sync the version number for crates.io to what we document in changelog and git tags. The -rtx1.6 suffix is non-semantic for semver resolution. It is supposed to indicate to human readers which TRT RTX version which trtx version supports. We won't fix this for the published 0.8.0-rtx1.5 but at least we will have for a possible subsequent patch version bump. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7398daf..68c4d45 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.5" +version = "0.8.0+rtx1.6" edition = "2021" license = "Apache-2.0" authors = ["Tarek Ziade", "Markus Tavenrath", "Stephan Seitz"]