diff --git a/CHANGELOG.md b/CHANGELOG.md index d6d83cf7ab..49245d07c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ "You know what they say. Fool me once, strike one, but fool me twice... strike three." — Michael Scott +## 2.6.0 + +### Various fixes & improvements + +- fix: Update symbolic to fix spurious EOF errors (#1339) by @Swatinem +- fix: Break out of the loop when we reach cursor limit for list_release_files (#1337) by @kamilogorek +- ref: Provide better user messages for properties file configs (#1336) by @kamilogorek +- feat(sourcemaps): Add no-dedupe flag for skipping deduplication (#1334) by @kamilogorek +- misc: Add note about MSVC requirement (#1333) by @kamilogorek +- ref: Use better artifacts url resolution for sourcemaps explain (#1329) by @kamilogorek +- feat: Add top-level events command with list subcommand (#1307) by @dcariotti + ## 2.5.2 ### Various fixes & improvements diff --git a/Cargo.lock b/Cargo.lock index 3976cc1621..be3bef6dfa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2085,7 +2085,7 @@ dependencies = [ [[package]] name = "sentry-cli" -version = "2.5.2" +version = "2.6.0" dependencies = [ "anyhow", "anylog", diff --git a/Cargo.toml b/Cargo.toml index 4fb1754c0d..f0384de829 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Armin Ronacher "] build = "build.rs" name = "sentry-cli" -version = "2.5.2" +version = "2.6.0" edition = "2018" [dependencies] diff --git a/package.json b/package.json index 555f4c5f8f..e2638f767d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/cli", - "version": "2.5.2", + "version": "2.6.0", "description": "A command line utility to work with Sentry. https://docs.sentry.io/hosted/learn/cli/", "repository": "git://github.com/getsentry/sentry-cli.git", "homepage": "https://docs.sentry.io/hosted/learn/cli/",