Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

- (snapshots) Update `snapshots download` to use the new archive endpoint, triggering the archive build and polling until it is ready before downloading ([#3344](https://github.com/getsentry/sentry-cli/pull/3344))
- (snapshots) Show a clear "project was renamed" error instead of a cryptic JSON parse failure when uploading to a renamed project slug ([#3341](https://github.com/getsentry/sentry-cli/pull/3341))
- Fix update nagger never showing when a newer version is available ([#3347](https://github.com/getsentry/sentry-cli/issues/3347))

## 3.5.1

Expand Down
2 changes: 1 addition & 1 deletion src/utils/update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ impl LastUpdateCheck {
if let Some(ref release_v) = self.last_fetched_version;
if let Some(ref check_v) = self.last_check_version;
then {
Version::parse(release_v.as_str()).unwrap() < Version::parse(VERSION).unwrap() &&
Version::parse(VERSION).unwrap() < Version::parse(release_v.as_str()).unwrap() &&
check_v.as_str() == VERSION
} else {
false
Expand Down
Loading