Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
23prime committed Jun 11, 2024
1 parent b227dcb commit c3fd6d0
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 25 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,17 @@ jobs:
resolver: lts-19.0
- ghc: 9.2.7
resolver: lts-20.18
- ghc: 9.4.8
resolver: lts-21.25
- ghc: 9.6.5
resolver: lts-22.25
- ghc: 9.8.2
resolver: nightly
- ghc: latest
resolver: lts
# Now, 'ghc: head' is unable
# See: https://github.com/haskell/actions/issues/93
# - ghc: head
- ghc: 9.4.5
resolver: nightly

runs-on: ubuntu-latest
continue-on-error: ${{ matrix.plan.allow-fail == true }}
Expand All @@ -86,7 +90,7 @@ jobs:

- name: Versions
run: |
ghc --version
ghc --version
stack --version
- name: Configure
Expand Down
24 changes: 12 additions & 12 deletions oeis2.cabal
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.35.1.
-- This file has been generated from package.yaml by hpack version 0.36.0.
--
-- see: https://github.com/sol/hpack

name: oeis2
version: 1.0.7
version: 1.0.8
synopsis: Interface for Online Encyclopedia of Integer Sequences (OEIS).
description: Release notes are here https://github.com/23prime/oeis2/releases
category: Math
Expand Down Expand Up @@ -34,14 +34,14 @@ library
hs-source-dirs:
src
build-depends:
aeson >=2 && <2.1
, base >=4.7 && <5
aeson ==2.*
, base >=4.17 && <5
, containers >=0.5 && <0.7
, http-conduit >=2.2 && <2.4
, http-conduit >=2.2 && <3
, lens >=4.15 && <6
, lens-aeson >=1.2 && <2
, text ==1.2.*
, vector ==0.12.*
, text ==2.*
, vector ==0.13.*
default-language: Haskell2010

test-suite oeis2-test
Expand All @@ -54,14 +54,14 @@ test-suite oeis2-test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
QuickCheck
, aeson >=2 && <2.1
, base >=4.7 && <5
, aeson ==2.*
, base >=4.17 && <5
, containers >=0.5 && <0.7
, hspec
, http-conduit >=2.2 && <2.4
, http-conduit >=2.2 && <3
, lens >=4.15 && <6
, lens-aeson >=1.2 && <2
, oeis2
, text ==1.2.*
, vector ==0.12.*
, text ==2.*
, vector ==0.13.*
default-language: Haskell2010
18 changes: 9 additions & 9 deletions package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: oeis2
version: 1.0.7
version: 1.0.8
github: "23prime/oeis2"
license: BSD3
author: "Taisuke Hikawa"
Expand All @@ -15,14 +15,14 @@ category: Math
description: Release notes are here https://github.com/23prime/oeis2/releases

dependencies:
- base >= 4.7 && < 5
- text >= 1.2 && < 1.3
- vector >= 0.12 && < 0.13
- aeson >= 2 && < 2.1
- containers >= 0.5 && < 0.7
- lens >= 4.15 && < 6
- lens-aeson >= 1.2 && < 2
- http-conduit >= 2.2 && < 2.4
- base >= 4.17 && < 5
- text >= 2 && < 3
- vector >= 0.13 && < 0.14
- aeson >= 2 && < 3
- containers >= 0.5 && < 0.7
- lens >= 4.15 && < 6
- lens-aeson >= 1.2 && < 2
- http-conduit >= 2.2 && < 3

library:
source-dirs: src
Expand Down
2 changes: 1 addition & 1 deletion stack.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
resolver: lts-20.18
resolver: lts-22.25

packages:
- '.'
Expand Down

0 comments on commit c3fd6d0

Please sign in to comment.