Skip to content

Commit bf32082

Browse files
committed
Bump MSRV to 1.60
Fixes the build error due to log 0.4.21 requiring a newer version: error: package `log v0.4.21` cannot be built because it requires rustc 1.60.0 or newer, while the currently active rustc version is 1.56.1
1 parent e29c40f commit bf32082

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
build_and_test:
1010
runs-on: ubuntu-22.04
11-
container: rust:1.56
11+
container: rust:1.60
1212
steps:
1313
- uses: actions/checkout@v3
1414
- run: cargo build

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ Possible log types:
1111
- `[fixed]` for any bug fixes.
1212
- `[security]` to invite users to upgrade in case of vulnerabilities.
1313

14+
### Unreleased
15+
16+
- [changed] Require at lest Rust 1.60
17+
1418
### V0.9.0 (2023-05-07)
1519

1620
- [changed] Changed the way sensor types are exported.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ include = [
2121
"AUTHORS.md",
2222
]
2323
edition = "2021"
24-
rust-version = "1.56"
24+
rust-version = "1.60"
2525

2626
[dependencies]
2727
log = "^0.4"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ serialization and deserialization to/from JSON using Serde.
1111
- Crate Documentation: https://docs.rs/spaceapi/
1212
- SpaceAPI Documentation: https://spaceapi.io/pages/docs.html
1313

14-
This library requires Rust 1.56.0 or newer.
14+
This library requires Rust 1.60.0 or newer.
1515

1616

1717
## Usage

clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
msrv = "1.56"
1+
msrv = "1.60"

0 commit comments

Comments
 (0)