From a4f441d2bddd3118e63a67ea010cdbaf07910bcb Mon Sep 17 00:00:00 2001 From: joe-prosser Date: Thu, 4 Apr 2024 10:26:34 +0100 Subject: [PATCH] release v0.24.0 (#267) --- 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 8fdf6d3..d35bf77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Unreleased +# v0.24.0 - BREAKING: the `--context` option is now required. Users need to opt out if they don't want to provide this for every command - BREAKING: the `--context` option is always a required field for internal users diff --git a/Cargo.lock b/Cargo.lock index 2f71a08..7af5bbb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1268,7 +1268,7 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" [[package]] name = "reinfer-cli" -version = "0.23.0" +version = "0.24.0" dependencies = [ "anyhow", "backoff", @@ -1301,7 +1301,7 @@ dependencies = [ [[package]] name = "reinfer-client" -version = "0.23.0" +version = "0.24.0" dependencies = [ "chrono", "http", diff --git a/README.md b/README.md index acb80c8..ece0319 100644 --- a/README.md +++ b/README.md @@ -53,13 +53,13 @@ The [api](/api) directory contains a Rust client library for reinfer which can b Statically linked binaries with no dependencies are provided for selected platforms: -- [Linux (x86_64-unknown-linux-musl)](https://reinfer.io/public/cli/bin/x86_64-unknown-linux-musl/0.23.0/re) -- [macOS (x86_64-apple-darwin)](https://reinfer.io/public/cli/bin/x86_64-apple-darwin/0.23.0/re) -- [Windows (x86_64-pc-windows-gnu)](https://reinfer.io/public/cli/bin/x86_64-pc-windows-gnu/0.23.0/re.exe) +- [Linux (x86_64-unknown-linux-musl)](https://reinfer.io/public/cli/bin/x86_64-unknown-linux-musl/0.24.0/re) +- [macOS (x86_64-apple-darwin)](https://reinfer.io/public/cli/bin/x86_64-apple-darwin/0.24.0/re) +- [Windows (x86_64-pc-windows-gnu)](https://reinfer.io/public/cli/bin/x86_64-pc-windows-gnu/0.24.0/re.exe) ### Debian / Ubuntu -You can download a `.deb` package [here](https://reinfer.io/public/cli/debian/reinfer-cli_0.23.0_amd64.deb). +You can download a `.deb` package [here](https://reinfer.io/public/cli/debian/reinfer-cli_0.24.0_amd64.deb). ### From Source diff --git a/api/Cargo.toml b/api/Cargo.toml index c6530c2..5c0c4ae 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reinfer-client" -version = "0.23.0" +version = "0.24.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 14ec877..3d7e944 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reinfer-cli" -version = "0.23.0" +version = "0.24.0" description = "Command line interface for Re:infer, the conversational data intelligence platform" homepage = "https://github.com/reinfer/cli" readme = "README.md" @@ -34,7 +34,7 @@ serde_json = "1.0.87" structopt = { version = "0.3.26", default-features = false } url = { version = "2.3.1", features = ["serde"] } -reinfer-client = { version = "0.23.0", path = "../api" } +reinfer-client = { version = "0.24.0", path = "../api" } dialoguer = "0.10.4" scoped_threadpool = "0.1.9" backoff = "0.4.0"