Skip to content

Commit

Permalink
release v0.21.4 (#250)
Browse files Browse the repository at this point in the history
* release v0.21.4
  • Loading branch information
joe-prosser authored Jan 18, 2024
1 parent f861d86 commit 0ac7cce
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## Unreleased
# v0.21.4
- Add messages filters
- Fixes `required` field error when interacting with datasets

## v0.21.3
- Reduce batch size for parse emls
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.21.3/re)
- [macOS (x86_64-apple-darwin)](https://reinfer.io/public/cli/bin/x86_64-apple-darwin/0.21.3/re)
- [Windows (x86_64-pc-windows-gnu)](https://reinfer.io/public/cli/bin/x86_64-pc-windows-gnu/0.21.3/re.exe)
- [Linux (x86_64-unknown-linux-musl)](https://reinfer.io/public/cli/bin/x86_64-unknown-linux-musl/0.21.4/re)
- [macOS (x86_64-apple-darwin)](https://reinfer.io/public/cli/bin/x86_64-apple-darwin/0.21.4/re)
- [Windows (x86_64-pc-windows-gnu)](https://reinfer.io/public/cli/bin/x86_64-pc-windows-gnu/0.21.4/re.exe)

### Debian / Ubuntu

You can download a `.deb` package [here](https://reinfer.io/public/cli/debian/reinfer-cli_0.21.3_amd64.deb).
You can download a `.deb` package [here](https://reinfer.io/public/cli/debian/reinfer-cli_0.21.4_amd64.deb).

### From Source

Expand Down Expand Up @@ -194,8 +194,8 @@ conditions.
- Run `cargo build` to update all lockfiles.
- Update the `CHANGELOG.md` to mark all `Unreleased` changes as part of the new version.
- Check the git log since last release to make sure it's not missing anything.
- Update the download links to the static binaries in `README.md`
- Commit everything and PR it as usual.
- Update the download links in README
- Cut a release by [creating a new Github release](https://github.com/reinfer/cli/releases/new).
- Use the version number as the release title: `v0.10.1`.
- Use the relevant changelog section as the release description.
Expand Down
2 changes: 1 addition & 1 deletion api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "reinfer-client"
version = "0.21.3"
version = "0.21.4"
description = "API client for Re:infer, the conversational data intelligence platform"
homepage = "https://github.com/reinfer/cli"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "reinfer-cli"
version = "0.21.3"
version = "0.21.4"
description = "Command line interface for Re:infer, the conversational data intelligence platform"
homepage = "https://github.com/reinfer/cli"
readme = "README.md"
Expand Down Expand Up @@ -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.21.3", path = "../api" }
reinfer-client = { version = "0.21.4", path = "../api" }
dialoguer = "0.10.4"
scoped_threadpool = "0.1.9"
backoff = "0.4.0"
Expand Down

0 comments on commit 0ac7cce

Please sign in to comment.