Skip to content

Commit f7e8417

Browse files
authored
Bump MSRV to 1.56.0 (#396)
1 parent ffc26ac commit f7e8417

File tree

5 files changed

+5
-12
lines changed

5 files changed

+5
-12
lines changed

.github/workflows/ci.yaml

+1-7
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
strategy:
2020
matrix:
21-
rust: [1.46.0, stable, nightly]
21+
rust: [1.56.0, stable, nightly]
2222

2323
steps:
2424
- uses: actions/checkout@v3
@@ -30,12 +30,6 @@ jobs:
3030
toolchain: ${{ matrix.rust }}
3131
profile: minimal
3232
override: true
33-
- uses: actions-rs/cargo@v1
34-
name: Downgrade indexmap to MSRV
35-
if: ${{ matrix.rust }} == "1.46.0"
36-
with:
37-
command: update
38-
args: -p indexmap --precise 1.8.2
3933
- run: cargo test
4034
- run: cargo test --features integer128
4135
- run: cargo test --features indexmap

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
- Add `integer128` feature that guards `i128` and `u128` ([#304](https://github.com/ron-rs/ron/pull/304), [#351](https://github.com/ron-rs/ron/pull/351))
99
- Fix issue [#265](https://github.com/ron-rs/ron/issues/265) with better missing comma error ([#353](https://github.com/ron-rs/ron/pull/353))
1010
- Fix issue [#301](https://github.com/ron-rs/ron/issues/301) with better error messages ([#354](https://github.com/ron-rs/ron/pull/354))
11-
- Bump MSRV to 1.46.0 ([#361](https://github.com/ron-rs/ron/pull/361))
1211
- Fix issue [#337](https://github.com/ron-rs/ron/issues/337) by removing `decimal_floats` PrettyConfig option and unconditional decimals in floats ([#363](https://github.com/ron-rs/ron/pull/363))
1312
- Fix issue [#203](https://github.com/ron-rs/ron/issues/203) with full de error positioning ([#356](https://github.com/ron-rs/ron/pull/356))
13+
- Bump MSRV to 1.56.0 ([#396](https://github.com/ron-rs/ron/pull/396))
1414

1515
## [0.7.1] - 2022-06-15
1616

Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,13 @@ authors = [
99
"Dzmitry Malyshau <[email protected]>",
1010
"Thomas Schaller <[email protected]>",
1111
]
12-
edition = "2018"
12+
edition = "2021"
1313
description = "Rusty Object Notation"
1414
categories = ["encoding"]
1515
readme = "README.md"
1616
homepage = "https://github.com/ron-rs/ron"
1717
repository = "https://github.com/ron-rs/ron"
1818
documentation = "https://docs.rs/ron/"
19-
exclude = ["bors.toml", ".travis.yml"]
2019

2120
[features]
2221
default = []

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![CI](https://github.com/ron-rs/ron/actions/workflows/ci.yaml/badge.svg)](https://github.com/ron-rs/ron/actions/workflows/ci.yaml)
44
[![codecov](https://img.shields.io/codecov/c/github/ron-rs/ron/codecov?token=x4Q5KA51Ul)](https://codecov.io/gh/ron-rs/ron)
55
[![Crates.io](https://img.shields.io/crates/v/ron.svg)](https://crates.io/crates/ron)
6-
[![MSRV](https://img.shields.io/badge/MSRV-1.46.0-orange)](https://github.com/ron-rs/ron)
6+
[![MSRV](https://img.shields.io/badge/MSRV-1.56.0-orange)](https://github.com/ron-rs/ron)
77
[![Docs](https://docs.rs/ron/badge.svg)](https://docs.rs/ron)
88
[![Matrix](https://img.shields.io/matrix/ron-rs:matrix.org.svg)](https://matrix.to/#/#ron-rs:matrix.org)
99

clippy.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
msrv = "1.46.0"
1+
msrv = "1.56.0"
22
blacklisted-names = []

0 commit comments

Comments
 (0)