From 1f4f9eb56060fd0cb4d1534a08392e37616959bd Mon Sep 17 00:00:00 2001 From: Michael Kirk Date: Fri, 20 Dec 2024 12:01:39 -0600 Subject: [PATCH] bump MSRV to 1.70 --- .github/workflows/test.yml | 4 ++-- CHANGES.md | 3 ++- Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e0672e92..95a40d41 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,8 +11,8 @@ on: env: LIBPROJ_VERSION: 9.4.0 - RUST_MSRV: "1.70" - RUST_LATEST: "1.77" + RUST_MSRV: "1.75" + RUST_LATEST: "1.83" jobs: # work around GHA env strictness diff --git a/CHANGES.md b/CHANGES.md index 54cc1146..0b3c15a0 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,9 +1,10 @@ # Changes ## Unreleased + - Update to proj-sys 0.24.0 (libproj 9.4.0) - Provide bundled bindings by default and move support for build time generated bindings behind the `buildtime_bindgen` feature of proj-sys -- Bump MSRV to 1.65 +- Bump MSRV to 1.70 ## 0.27.2 diff --git a/Cargo.toml b/Cargo.toml index 0988663c..690823e1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["proj", "projection", "osgeo", "geo"] license = "MIT OR Apache-2.0" readme = "README.md" edition = "2018" -rust-version = "1.70" +rust-version = "1.75" [dependencies] proj-sys = { version = "0.24.0", path = "proj-sys" }