Skip to content

Commit

Permalink
Merge pull request #2 from mpilgrem/bump
Browse files Browse the repository at this point in the history
Various updates for the passage for time
  • Loading branch information
mpilgrem authored Oct 27, 2024
2 parents 3e2b296 + 7dfaae7 commit 74465cb
Show file tree
Hide file tree
Showing 7 changed files with 1,225 additions and 1,202 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.2.8"
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Haskell bindings to the Google Maps Static API (formerly Static Maps API)
This respository has no connection with Google Inc. or its affiliates.

The
[Google Maps Static API](https://developers.google.com/maps/documentation/maps-static/intro)
[Google Maps Static API](https://developers.google.com/maps/documentation//intro)
returns a map as an image via an HTTP request. This library provides bindings in
Haskell to that API.

Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.7.0.3

* Update dependencies for GHC 9.4.1 to GHC 9.8.3 and revisit upper bounds

# 0.7.0.2

* Update dependencies for GHC 9.2.8 and revisit upper bounds
Expand Down
16 changes: 8 additions & 8 deletions google-static-maps.cabal
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: google-static-maps
version: 0.7.0.2
version: 0.7.0.3
synopsis: Bindings to the Google Maps Static API (formerly Static
Maps API)
description: The
<https://developers.google.com/maps/documentation/maps-static/intro Google Maps Static API>
<https://developers.google.com/maps/documentation/maps-static Google Maps Static API>
returns a map as an image via an HTTP request. This library
provides bindings in Haskell to that API.
.
Expand Down Expand Up @@ -35,21 +35,21 @@ library
hs-source-dirs: src
exposed-modules: Web.Google.Maps.Static
, Web.Google.Maps.Common
build-depends: base >= 4.8 && < 4.17
, aeson >= 0.7 && < 2.2
build-depends: base >= 4.8 && < 4.20
, aeson >= 0.7 && < 2.3
, base64-bytestring >= 0.1.1 && < 1.3
, bytedump >= 0.9 && < 1.1
, bytestring >= 0.10 && < 0.12
, bytestring >= 0.10 && < 0.13
, cryptonite >= 0.1 && < 0.31
, double-conversion >= 0.2 && < 2.1
, http-client >= 0.2 && < 0.8
, JuicyPixels >= 1.0 && < 3.4
, memory >= 0.1 && < 0.19
, network-uri >= 2.6 && < 2.8
, servant >= 0.16 && < 0.20
, servant-client >= 0.16 && < 0.20
, servant >= 0.16 && < 0.21
, servant-client >= 0.16 && < 0.21
, servant-JuicyPixels >= 0.3 && < 0.4
, text >= 1.0 && < 2.1
, text >= 1.0 && < 2.2
, utf8-string >= 0.3 && < 1.1
default-language: Haskell2010
ghc-options: -Wall
Expand Down
Loading

0 comments on commit 74465cb

Please sign in to comment.