Skip to content

Commit ccd463a

Browse files
committedApr 18, 2022
Bump proj dependency to 0.26, change CI
1 parent 43040ed commit ccd463a

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed
 

‎.github/workflows/test.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
matrix:
4343
container_image:
4444
# Use the latest stable version. No need for older versions.
45-
- "georust/geo-ci:rust-1.59"
45+
- "georust/geo-ci:proj-9.0.0-rust-1.59"
4646
container:
4747
image: ${{ matrix.container_image }}
4848
steps:
@@ -66,10 +66,10 @@ jobs:
6666
# giving us about 6 months of coverage.
6767
#
6868
# Minimum supported rust version (MSRV)
69-
- "georust/geo-ci:rust-1.56"
69+
- "georust/geo-ci:proj-9.0.0-rust-1.56"
7070
# Two most recent releases - we omit older ones for expedient CI
71-
- "georust/geo-ci:rust-1.58"
72-
- "georust/geo-ci:rust-1.59"
71+
- "georust/geo-ci:proj-9.0.0-rust-1.58"
72+
- "georust/geo-ci:proj-9.0.0-rust-1.59"
7373
container:
7474
image: ${{ matrix.container_image }}
7575
steps:
@@ -92,10 +92,10 @@ jobs:
9292
# giving us about 6 months of coverage.
9393
#
9494
# Minimum supported rust version (MSRV)
95-
- "georust/geo-ci:rust-1.56"
95+
- "georust/geo-ci:proj-9.0.0-rust-1.56"
9696
# Two most recent releases - we omit older ones for expedient CI
97-
- "georust/geo-ci:rust-1.58"
98-
- "georust/geo-ci:rust-1.59"
97+
- "georust/geo-ci:proj-9.0.0-rust-1.58"
98+
- "georust/geo-ci:proj-9.0.0-rust-1.59"
9999
container:
100100
image: ${{ matrix.container_image }}
101101
steps:
@@ -119,10 +119,10 @@ jobs:
119119
# giving us about 6 months of coverage.
120120
#
121121
# Minimum supported rust version (MSRV)
122-
- "georust/geo-ci:rust-1.56"
122+
- "georust/geo-ci:proj-9.0.0-rust-1.56"
123123
# Two most recent releases - we omit older ones for expedient CI
124-
- "georust/geo-ci:rust-1.58"
125-
- "georust/geo-ci:rust-1.59"
124+
- "georust/geo-ci:proj-9.0.0-rust-1.58"
125+
- "georust/geo-ci:proj-9.0.0-rust-1.59"
126126
container:
127127
image: ${{ matrix.container_image }}
128128
steps:
@@ -142,7 +142,7 @@ jobs:
142142
matrix:
143143
container_image:
144144
# Fuzz only on latest
145-
- "georust/geo-ci:rust-1.59"
145+
- "georust/geo-ci:proj-9.0.0-rust-1.59"
146146
container:
147147
image: ${{ matrix.container_image }}
148148
steps:
@@ -155,7 +155,7 @@ jobs:
155155
runs-on: ubuntu-latest
156156
if: "!contains(github.event.head_commit.message, '[skip ci]')"
157157
container:
158-
image: georust/geo-ci:rust-1.59
158+
image: georust/geo-ci:proj-9.0.0-rust-1.59
159159
steps:
160160
- name: Checkout repository
161161
uses: actions/checkout@v2

‎geo/CHANGES.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
* Remove unneded reference for `*MapCoords*` closure parameter.
66
* <https://github.com/georust/geo/pull/810>
7+
* BREAKING: Bump proj dependency to 0.26 which uses proj lib 9.0
8+
* <https://github.com/georust/geo/pull/813>
79

810
## 0.20.0
911

‎geo/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ geo-types = { version = "0.7.3", features = ["approx", "use-rstar"] }
2020
geographiclib-rs = "0.2"
2121
log = "0.4.11"
2222
num-traits = "0.2"
23-
proj = { version = "0.25.2", optional = true }
23+
proj = { version = "0.26.0", optional = true }
2424
robust = "0.2.2"
2525
rstar = "0.8"
2626
serde = { version = "1.0", optional = true, features = ["derive"] }

0 commit comments

Comments
 (0)
Please sign in to comment.