Skip to content

Commit e154c82

Browse files
committed
Raise MSRV from 1.56 to 1.63
1 parent 3f4399c commit e154c82

File tree

23 files changed

+32
-26
lines changed

23 files changed

+32
-26
lines changed

.github/workflows/full-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
- rust: { toolchain: 'nightly' }
136136
testflags: '-- --skip ui_tests'
137137
- os: { id: ubuntu-latest, name: linux }
138-
rust: { toolchain: '1.56', postfix: ' (msrv 1.56)' }
138+
rust: { toolchain: '1.63', postfix: ' (msrv 1.63)' }
139139
testflags: '-- --skip ui_tests'
140140
- os: { id: ubuntu-latest, name: linux }
141141
rust: { toolchain: 'stable', postfix: ' (minimal-deps)', special: 'minimal-deps' }
@@ -281,9 +281,9 @@ jobs:
281281
- rust: nightly
282282
godot: "3.5.1-rc1"
283283
postfix: ' (nightly)'
284-
- rust: '1.56'
284+
- rust: '1.63'
285285
godot: "3.5.1-rc1"
286-
postfix: ' (msrv 1.56)'
286+
postfix: ' (msrv 1.63)'
287287

288288
# Test with oldest supported engine version
289289
- rust: stable

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.11.0] - unreleased
9+
10+
### Changed
11+
12+
- Changed supported Godot version to 3.5.1 ([#910](https://github.com/godot-rust/godot-rust/pull/910))
13+
- MSRV is now 1.63 ([#910](https://github.com/godot-rust/godot-rust/pull/910))
814

915
## [0.10.2] - unreleased
1016

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
The bindings cover most of the exposed API of Godot 3.5, and are being used on a number of projects in development, but we still expect non-trivial breaking changes in the API in the coming releases. godot-rust adheres to [Cargo's semantic versioning](https://doc.rust-lang.org/cargo/reference/semver.html).
1616

17-
Minimum supported Rust version (MSRV) is **1.56**. We use the Rust 2021 Edition.
17+
Minimum supported Rust version (MSRV) is **1.63**. We use the Rust 2021 Edition.
1818

1919
## Engine compatibility
2020

bindings-generator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT"
99
version = "0.10.1"
1010
workspace = ".."
1111
edition = "2021"
12-
rust-version = "1.56"
12+
rust-version = "1.63"
1313

1414
[features]
1515
debug = []

examples/builder-export/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "builder-export"
33
version = "0.1.0"
44
authors = ["The godot-rust developers"]
55
edition = "2021"
6-
rust-version = "1.56"
6+
rust-version = "1.63"
77
license = "MIT"
88
publish = false
99

examples/dodge-the-creeps/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
authors = ["The godot-rust developers"]
55
publish = false
66
edition = "2021"
7-
rust-version = "1.56"
7+
rust-version = "1.63"
88
license = "MIT"
99

1010
[lib]

examples/hello-world/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
authors = ["The godot-rust developers"]
55
publish = false
66
edition = "2021"
7-
rust-version = "1.56"
7+
rust-version = "1.63"
88
license = "MIT"
99

1010
[lib]

examples/native-plugin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "native-plugin"
33
version = "0.1.0"
44
authors = ["The godot-rust developers"]
55
edition = "2021"
6-
rust-version = "1.56"
6+
rust-version = "1.63"
77
license = "MIT"
88
publish = false
99

examples/property-export/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "property-export"
33
version = "0.1.0"
44
authors = ["The godot-rust developers"]
55
edition = "2021"
6-
rust-version = "1.56"
6+
rust-version = "1.63"
77
license = "MIT"
88
publish = false
99

examples/resource/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
authors = ["The godot-rust developers"]
55
publish = false
66
edition = "2021"
7-
rust-version = "1.56"
7+
rust-version = "1.63"
88
license = "MIT"
99

1010
[lib]

0 commit comments

Comments
 (0)