diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c86e2ab..d37634e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,16 +7,16 @@ jobs: runs-on: ubuntu-latest env: # work-around https://github.com/rust-lang/cargo/issues/10303 - CARGO_NET_GIT_FETCH_WITH_CLI: ${{ matrix.rust == '1.56.0' }} + CARGO_NET_GIT_FETCH_WITH_CLI: ${{ matrix.rust == '1.60.0' }} strategy: matrix: rust: - - 1.56.0 + - 1.60.0 - stable - beta - nightly include: - - rust: 1.56.0 + - rust: 1.60.0 test_features: "--features impl_json_schema" allow_failure: false - rust: stable diff --git a/CHANGELOG.md b/CHANGELOG.md index 061a4a5..51f5f11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ ### Changed: -- Minimum supported rust version is now 1.56.0 +- Minimum supported rust version is now 1.60.0 ## [0.8.12] - 2023-02-26 diff --git a/README.md b/README.md index 8e5a39c..ed1489f 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![CI Build](https://img.shields.io/github/actions/workflow/status/GREsau/schemars/ci.yml?branch=master&logo=GitHub)](https://github.com/GREsau/schemars/actions) [![Crates.io](https://img.shields.io/crates/v/schemars)](https://crates.io/crates/schemars) [![Docs](https://docs.rs/schemars/badge.svg)](https://docs.rs/schemars) -[![MSRV 1.56+](https://img.shields.io/badge/schemars-rustc_1.56+-lightgray.svg)](https://blog.rust-lang.org/2021/10/21/Rust-1.56.0.html) +[![MSRV 1.60+](https://img.shields.io/badge/schemars-rustc_1.60+-lightgray.svg)](https://blog.rust-lang.org/2022/04/07/Rust-1.60.0.html) Generate JSON Schema documents from Rust code diff --git a/schemars/Cargo.toml b/schemars/Cargo.toml index aaf7b3d..de80438 100644 --- a/schemars/Cargo.toml +++ b/schemars/Cargo.toml @@ -11,7 +11,7 @@ readme = "README.md" keywords = ["rust", "json-schema", "serde"] categories = ["encoding"] build = "build.rs" -rust-version = "1.56" +rust-version = "1.60" [dependencies] schemars_derive = { version = "=0.8.12", optional = true, path = "../schemars_derive" } diff --git a/schemars_derive/Cargo.toml b/schemars_derive/Cargo.toml index 8bb235e..0b34e49 100644 --- a/schemars_derive/Cargo.toml +++ b/schemars_derive/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" license = "MIT" readme = "README.md" keywords = ["rust", "json-schema", "serde"] -rust-version = "1.56" +rust-version = "1.60" [lib] proc-macro = true