Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update MSRV / CI to match geo-types dependency. #160

Merged
merged 3 commits into from
Jun 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ jobs:
matrix:
container_image:
# Minimum supported rust (MSRV)
- "georust/proj-ci:proj-9.1.0-rust-1.58"
- "georust/proj-ci:proj-9.1.0-rust-1.63"
# Latest stable rust
- "georust/proj-ci:proj-9.1.0-rust-1.64"
- "georust/proj-ci:proj-9.1.0-rust-1.70"
features:
- ""
- "--features network"
Expand Down Expand Up @@ -87,34 +87,34 @@ jobs:
include:
# Minimum supported rust (MSRV)
- container:
image: georust/proj-ci:proj-9.1.0-rust-1.58
image: georust/proj-ci:proj-9.1.0-rust-1.63
env:
_PROJ_SYS_TEST_EXPECT_BUILD_FROM_SRC: 0
features: ""
- container:
image: georust/proj-ci:proj-9.1.0-rust-1.58
image: georust/proj-ci:proj-9.1.0-rust-1.63
env:
_PROJ_SYS_TEST_EXPECT_BUILD_FROM_SRC: 1
features: "--features bundled_proj"
- container:
image: georust/proj-ci-without-system-proj:proj-9.1.0-rust-1.58
image: georust/proj-ci-without-system-proj:proj-9.1.0-rust-1.63
env:
_PROJ_SYS_TEST_EXPECT_BUILD_FROM_SRC: 1
features: ""

# Latest stable rust
- container:
image: georust/proj-ci:proj-9.1.0-rust-1.64
image: georust/proj-ci:proj-9.1.0-rust-1.70
env:
_PROJ_SYS_TEST_EXPECT_BUILD_FROM_SRC: 0
features: ""
- container:
image: georust/proj-ci:proj-9.1.0-rust-1.64
image: georust/proj-ci:proj-9.1.0-rust-1.70
env:
_PROJ_SYS_TEST_EXPECT_BUILD_FROM_SRC: 1
features: "--features bundled_proj"
- container:
image: georust/proj-ci-without-system-proj:proj-9.1.0-rust-1.64
image: georust/proj-ci-without-system-proj:proj-9.1.0-rust-1.70
env:
_PROJ_SYS_TEST_EXPECT_BUILD_FROM_SRC: 1
features: ""
Expand Down
6 changes: 5 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@

- Bump `approx` dev dependency to match `geo-types`. This doesn't affect
downstream users, only those building the proj crate for development.
- <https://github.com/georust/proj/pull/138>
- Changed license field to [SPDX 2.1 license expression](https://spdx.dev/spdx-specification-21-web-version/#h.jxpfx0ykyb60)
- <https://github.com/georust/proj/pull/146>

- Run clippy and apply fixes
- <https://github.com/georust/proj/pull/151>
- Update to geo-types 0.7.8
- <https://github.com/georust/proj/pull/153>
- Update MSRV to 1.63
- <https://github.com/georust/proj/pull/160>

## 0.27.0
- Inline the functionality of the legacy `Info` trait directly into `Proj`/`ProjBuilder` and remove the `Info` trait.
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ keywords = ["proj", "projection", "osgeo", "geo"]
license = "MIT OR Apache-2.0"
readme = "README.md"
edition = "2018"
rust-version = "1.63"

[dependencies]
proj-sys = { version = "0.23.1", path = "proj-sys" }
Expand Down