Skip to content

fix(deps): correct minium chrono version and MSRV #324

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 9, 2021
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
rust: [1.45.0]
rust: [1.46.0]

name: Check / Test MSRV ${{ matrix.rust }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Unreleased

**Breaking Changes**:

- The minium supported Rust version was bumped to **1.46.0** due to requirements from dependencies.

## 0.22.0

**Breaking Changes**:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ best API and adding new features.
We currently only verify this crate against a recent version of Sentry hosted on [sentry.io](https://sentry.io/) but it
should work with on-prem Sentry versions 20.6 and later.

Additionally, the lowest Rust version we target is _1.45.0_.
Additionally, the lowest Rust version we target is _1.46.0_.

## Resources

Expand Down
2 changes: 1 addition & 1 deletion sentry-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ test = ["client"]
[dependencies]
sentry-types = { version = "0.22.0", path = "../sentry-types" }
serde = { version = "1.0.104", features = ["derive"] }
chrono = "0.4.10"
chrono = "0.4.13"
lazy_static = "1.4.0"
rand = { version = "0.8.1", optional = true }
serde_json = "1.0.46"
Expand Down
2 changes: 1 addition & 1 deletion sentry-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ thiserror = "1.0.15"
serde = { version = "1.0.104", features = ["derive"] }
serde_json = "1.0.46"
url = { version = "2.1.1", features = ["serde"] }
chrono = { version = "0.4.10", default-features = false, features = ["clock", "std", "serde"] }
chrono = { version = "0.4.13", default-features = false, features = ["clock", "std", "serde"] }
uuid = { version = "0.8.1", features = ["v4", "serde"] }
debugid = { version = "0.7.2", features = ["serde"] }