From aca8de231fb83024239f6bf1e348a951ea49e0a7 Mon Sep 17 00:00:00 2001 From: Joe Prosser Date: Fri, 31 Jul 2026 12:32:38 +0100 Subject: [PATCH] release v0.42.0 Minor rather than patch bump: reinfer-client is published, and this release carries a source-breaking API change -- four public enums gain an `Unknown` variant and three are no longer `Copy`. Co-Authored-By: Claude Opus 5 --- CHANGELOG.md | 2 +- Cargo.lock | 4 ++-- README.md | 8 ++++---- api/Cargo.toml | 2 +- cli/Cargo.toml | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8065f272..b2b4ffc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Unreleased +# v0.42.0 - Fix `re get datasets`, `re prune`, `re get custom-label-trend-report` and `re package upload` failing for a whole tenant when any one of its datasets used an attribution method, model version, extraction flag or dataset flag this CLI didn't recognise — even when the dataset being operated on diff --git a/Cargo.lock b/Cargo.lock index 7ba82372..a5aaaa79 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1573,7 +1573,7 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" [[package]] name = "reinfer-cli" -version = "0.41.0" +version = "0.42.0" dependencies = [ "anyhow", "backoff", @@ -1614,7 +1614,7 @@ dependencies = [ [[package]] name = "reinfer-client" -version = "0.41.0" +version = "0.42.0" dependencies = [ "chrono", "http", diff --git a/README.md b/README.md index 9283fedd..30a92109 100644 --- a/README.md +++ b/README.md @@ -56,9 +56,9 @@ Statically linked binaries with no dependencies are provided for selected platfo > [!NOTE] > Most users should install using these binaries -- [Linux (x86_64-unknown-linux-musl)](https://reinfer.dev/public/cli/bin/x86_64-unknown-linux-musl/0.41.0/re) -- [macOS (aarch64-apple-darwin)](https://reinfer.dev/public/cli/bin/aarch64-apple-darwin/0.41.0/re) -- [Windows (x86_64-pc-windows-gnu)](https://reinfer.dev/public/cli/bin/x86_64-pc-windows-gnu/0.41.0/re.exe) +- [Linux (x86_64-unknown-linux-musl)](https://reinfer.dev/public/cli/bin/x86_64-unknown-linux-musl/0.42.0/re) +- [macOS (aarch64-apple-darwin)](https://reinfer.dev/public/cli/bin/aarch64-apple-darwin/0.42.0/re) +- [Windows (x86_64-pc-windows-gnu)](https://reinfer.dev/public/cli/bin/x86_64-pc-windows-gnu/0.42.0/re.exe)
@@ -94,7 +94,7 @@ to add a folder to this list and move the binary to that folder. ### Debian / Ubuntu -You can download a `.deb` package [here](https://reinfer.dev/public/cli/debian/reinfer-cli_0.41.0_amd64.deb). +You can download a `.deb` package [here](https://reinfer.dev/public/cli/debian/reinfer-cli_0.42.0_amd64.deb). ### From Source diff --git a/api/Cargo.toml b/api/Cargo.toml index 760246e9..03186643 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reinfer-client" -version = "0.41.0" +version = "0.42.0" description = "API client for Re:infer, the conversational data intelligence platform" homepage = "https://github.com/reinfer/cli" readme = "README.md" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index f4cc9b14..7c93966b 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reinfer-cli" -version = "0.41.0" +version = "0.42.0" description = "Command line interface for Re:infer, the conversational data intelligence platform" homepage = "https://github.com/reinfer/cli" readme = "README.md" @@ -37,7 +37,7 @@ serde_json = { version = "1.0.87", features = ["unbounded_depth"] } structopt = { version = "0.3.26", default-features = false } url = { version = "2.3.1", features = ["serde"] } -reinfer-client = { version = "0.41.0", path = "../api" } +reinfer-client = { version = "0.42.0", path = "../api" } dialoguer = { version="0.11.0", features = ["fuzzy-select"] } scoped_threadpool = "0.1.9" backoff = "0.4.0"