diff --git a/CHANGELOG.md b/CHANGELOG.md index 5cf2e5a..2e4f7d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Unreleased - Alow users to filter get datasets by sources that they reference +# v0.27.0 +## Changed + +- Bucket statistics now provide either an exact count of raw emails up to a predefined upper limit, or a lower bound if the count exceeds this limit. + # v0.26.0 ## Breaking diff --git a/Cargo.lock b/Cargo.lock index 112490e..c69b241 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1268,7 +1268,7 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" [[package]] name = "reinfer-cli" -version = "0.26.0" +version = "0.27.0" dependencies = [ "anyhow", "backoff", @@ -1301,7 +1301,7 @@ dependencies = [ [[package]] name = "reinfer-client" -version = "0.26.0" +version = "0.27.0" dependencies = [ "chrono", "http", diff --git a/api/Cargo.toml b/api/Cargo.toml index 9213e5f..79b008d 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reinfer-client" -version = "0.26.0" +version = "0.27.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 eaccd11..de9890b 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reinfer-cli" -version = "0.26.0" +version = "0.27.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.26.0", path = "../api" } +reinfer-client = { version = "0.27.0", path = "../api" } dialoguer = "0.10.4" scoped_threadpool = "0.1.9" backoff = "0.4.0"