Skip to content

Commit

Permalink
Merge pull request #3 from mpilgrem/bump
Browse files Browse the repository at this point in the history
Bump various for the passage of time
  • Loading branch information
mpilgrem authored Oct 27, 2024
2 parents 692f563 + 575b2be commit c7ba977
Show file tree
Hide file tree
Showing 6 changed files with 254 additions and 236 deletions.
26 changes: 16 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,23 @@ jobs:
strategy:
fail-fast: false
matrix:
cabal: ["3.8"]
cabal: ["3.10"]
ghc:
- "9.0.2"
- "9.2.8"
- "9.4.8"
- "9.6.6"
- "9.8.3"
steps:
- uses: actions/checkout@v3
- uses: haskell/actions/setup@v2.4.3
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
id: setup-haskell-cabal
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
- run: cabal v2-update
- run: cabal v2-freeze
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: |
${{ steps.setup-haskell-cabal.outputs.cabal-store }}
Expand All @@ -40,25 +43,28 @@ jobs:
strategy:
fail-fast: false
matrix:
cabal: ["3.8"]
cabal: ["3.10"]
ghc:
- "9.0.2"
- "9.2.8"
- "9.4.8"
- "9.6.6"
- "9.8.3"
winio: [false]
include:
- ghc: "9.0.2"
cabal: "3.8"
- ghc: "9.8.3"
cabal: "3.10"
winio: true
steps:
- uses: actions/checkout@v3
- uses: haskell/actions/setup@v2.4.3
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
id: setup-haskell-cabal
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
- run: cabal v2-update
- run: cabal v2-freeze
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: |
${{ steps.setup-haskell-cabal.outputs.cabal-store }}
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright Mike Pilgrem (c) 2017-2023
Copyright Mike Pilgrem (c) 2017-2024

All rights reserved.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Haskell bindings to the Google Geocoding API (formerly Maps Geocoding API)
This respository has no connection with Google Inc. or its affiliates.

The
[Google Geocoding API](https://developers.google.com/maps/documentation/geocoding/intro)
[Google Geocoding API](https://developers.google.com/maps/documentation/geocoding)
provides a direct way to access geocoding and reverse geocoding services via an
HTTP request. This library provides bindings in Haskell to that API.

Expand Down
14 changes: 7 additions & 7 deletions google-maps-geocoding.cabal
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: google-maps-geocoding
version: 0.7.0.2
version: 0.7.0.3
synopsis: Bindings to the Google Geocoding API (formerly Maps
Geocoding API)
description: The
<https://developers.google.com/maps/documentation/geocoding/intro Google Geocoding API>
<https://developers.google.com/maps/documentation/geocoding Google Geocoding API>
provides a direct way to access geocoding and reverse
geocoding services via an HTTP request. This library
package provides bindings in Haskell to that API.
Expand Down Expand Up @@ -35,13 +35,13 @@ cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Web.Google.Geocoding
build-depends: base >= 4.8 && < 4.17
, aeson >= 1.1 && < 2.2
build-depends: base >= 4.8 && < 4.20
, aeson >= 1.1 && < 2.3
, google-static-maps >= 0.7 && < 0.8
, http-client >= 0.5 && < 0.8
, servant >= 0.16 && < 0.20
, servant-client >= 0.16 && < 0.20
, text >= 1.2 && < 2.1
, servant >= 0.16 && < 0.21
, servant-client >= 0.16 && < 0.21
, text >= 1.2 && < 2.2
default-language: Haskell2010
ghc-options: -Wall

Expand Down
Loading

0 comments on commit c7ba977

Please sign in to comment.