From 1ebc746f759123f5d24069fac35ed8a5b4b7097f Mon Sep 17 00:00:00 2001 From: joe-prosser <40175890+joe-prosser@users.noreply.github.com> Date: Tue, 21 Feb 2023 13:52:26 +0000 Subject: [PATCH] release v0.12.2 (#168) * release v0.12.2 --- CHANGELOG.md | 4 ++-- Cargo.lock | 4 ++-- README.md | 8 ++++---- api/Cargo.toml | 2 +- cli/Cargo.toml | 4 ++-- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b3e1ac8..7cb2e108 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,13 @@ -# Unreleased +# v0.12.2 - Rename "triggers" to "streams" following the rename in the API - Removed semantic url joins to support deployments within a subdirectory -- Add option to send welcome email on create user - Added functionality to use moon forms both in `LabelDef`s and in `AnnotatedComments`s ## Added - `re get comments` will now return auto-thresholds for predicted labels if provided with a `--model-version` parameter - `re update users` for bulk user permission updates +- Option to send welcome email on create user # v0.12.1 diff --git a/Cargo.lock b/Cargo.lock index 6a0c242a..da08346e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1198,7 +1198,7 @@ checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" [[package]] name = "reinfer-cli" -version = "0.12.1" +version = "0.12.2" dependencies = [ "anyhow", "chrono", @@ -1223,7 +1223,7 @@ dependencies = [ [[package]] name = "reinfer-client" -version = "0.12.1" +version = "0.12.2" dependencies = [ "chrono", "log", diff --git a/README.md b/README.md index e2b797de..c6377bd3 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.12.1/re) -- [macOS (x86_64-apple-darwin)](https://reinfer.io/public/cli/bin/x86_64-apple-darwin/0.12.1/re) -- [Windows (x86_64-pc-windows-gnu)](https://reinfer.io/public/cli/bin/x86_64-pc-windows-gnu/0.12.1/re.exe) +- [Linux (x86_64-unknown-linux-musl)](https://reinfer.io/public/cli/bin/x86_64-unknown-linux-musl/0.12.2/re) +- [macOS (x86_64-apple-darwin)](https://reinfer.io/public/cli/bin/x86_64-apple-darwin/0.12.2/re) +- [Windows (x86_64-pc-windows-gnu)](https://reinfer.io/public/cli/bin/x86_64-pc-windows-gnu/0.12.2/re.exe) ### Debian / Ubuntu -You can download a `.deb` package [here](https://reinfer.io/public/cli/debian/reinfer-cli_0.12.1_amd64.deb). +You can download a `.deb` package [here](https://reinfer.io/public/cli/debian/reinfer-cli_0.12.2_amd64.deb). ### From Source diff --git a/api/Cargo.toml b/api/Cargo.toml index 750875f9..39a4a2bb 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reinfer-client" -version = "0.12.1" +version = "0.12.2" 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 e80c1ed1..c09b39e0 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reinfer-cli" -version = "0.12.1" +version = "0.12.2" 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.12.1", path = "../api" } +reinfer-client = { version = "0.12.2", path = "../api" } [dev-dependencies] pretty_assertions = "1.3.0"