Skip to content

Commit f0774c4

Browse files
committed
Raise required rustc from 1.31 to 1.36
1 parent c3eddcd commit f0774c4

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
strategy:
3131
fail-fast: false
3232
matrix:
33-
rust: [beta, stable, 1.45.0, 1.40.0, 1.38.0, 1.31.0]
33+
rust: [beta, stable, 1.45.0, 1.40.0, 1.38.0, 1.36.0]
3434
os: [ubuntu]
3535
include:
3636
- rust: stable
@@ -42,9 +42,9 @@ jobs:
4242
toolchain: ${{matrix.rust}}
4343
- run: cargo check
4444
- run: cargo check --features preserve_order
45-
if: matrix.rust != '1.31.0'
45+
if: matrix.rust != '1.36.0'
4646
- run: cargo check --manifest-path tests/crate/Cargo.toml --no-default-features --features alloc,preserve_order
47-
if: matrix.rust != '1.31.0'
47+
if: matrix.rust != '1.36.0'
4848
- run: cargo check --features float_roundtrip
4949
- run: cargo check --features arbitrary_precision
5050
- run: cargo check --features raw_value

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ categories = ["encoding"]
1111
readme = "README.md"
1212
include = ["build.rs", "src/**/*.rs", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
1313
edition = "2018"
14-
rust-version = "1.31"
14+
rust-version = "1.36"
1515

1616
[dependencies]
1717
serde = { version = "1.0.100", default-features = false }

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Serde JSON   [![Build Status]][travis] [![Latest Version]][crates.io] [![Rustc Version 1.31+]][rustc]
1+
# Serde JSON   [![Build Status]][travis] [![Latest Version]][crates.io] [![Rustc Version 1.36+]][rustc]
22

33
[Build Status]: https://img.shields.io/github/workflow/status/serde-rs/json/CI/master
44
[travis]: https://github.com/serde-rs/json/actions?query=branch%3Amaster
55
[Latest Version]: https://img.shields.io/crates/v/serde_json.svg
66
[crates.io]: https://crates.io/crates/serde\_json
7-
[Rustc Version 1.31+]: https://img.shields.io/badge/rustc-1.31+-lightgray.svg
8-
[rustc]: https://blog.rust-lang.org/2018/12/06/Rust-1.31-and-rust-2018.html
7+
[Rustc Version 1.36+]: https://img.shields.io/badge/rustc-1.36+-lightgray.svg
8+
[rustc]: https://blog.rust-lang.org/2019/07/04/Rust-1.36.0.html
99

1010
**Serde is a framework for *ser*ializing and *de*serializing Rust data structures efficiently and generically.**
1111

0 commit comments

Comments
 (0)