diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66ff752..a7c9ef3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -74,7 +74,7 @@ jobs: fail-fast: false matrix: rust: - - "1.70" + - "1.82" os: - ubuntu-latest - macos-latest diff --git a/CHANGELOG.md b/CHANGELOG.md index b415047..d891628 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ ### Changed +- MSRV is now `1.82`. We will bump the MSRV to `1.85` in the future. - Keys now communicate with `imgui` in a far simpler manner -- rather than going through a complex keymap, they instead simply notate if they are or are not down to `imgui` directly. Multiple functions, such as `Ui::key_index`, `Ui::is_key_index_down`, `Ui::is_key_index_pressed`, `Ui::is_key_index_pressed_no_repeat`, and `Ui::key_index_pressed_amount` were removed. Use the corresponding non-`index` version. diff --git a/Cargo.toml b/Cargo.toml index ad3f24b..370ca2e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace] members = ["imgui", "imgui-sys", "xtask"] -package.rust-version = "1.70" +package.rust-version = "1.82" resolver = "2" \ No newline at end of file diff --git a/README.md b/README.md index e406bca..b90842e 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ See below as well for community lead platform and renderer crates. ## Minimum Support Rust Version (MSRV) -The MSRV for `imgui-rs` and all of the backend crates is **1.70**. We update our MSRV periodically, and issue a minor bump for it. +The MSRV for `imgui-rs` and all of the backend crates is **1.82**. We update our MSRV periodically, and issue a minor bump for it. ## Choosing a backend platform and a renderer