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

bump aeson bounds to < 2.3 #5

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
19 changes: 19 additions & 0 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Create dependency bump PR
on:
# allows manual triggering from https://github.com/../../actions/workflows/bump.yml
workflow_dispatch:
# runs weekly on Thursday at 8:00
schedule:
- cron: '0 8 * * 4'

permissions:
contents: write
pull-requests: write

jobs:
bump:
runs-on: ubuntu-latest
steps:
- uses: nomeata/haskell-bounds-bump-action@main
with:
test: false
55 changes: 27 additions & 28 deletions quickjs-hs.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@

cabal-version: 1.12
cabal-version: 2.0
name: quickjs-hs
version: 0.1.2.4
homepage: https://github.com/goodlyrottenapple/quickjs-hs#readme
Expand Down Expand Up @@ -35,21 +34,21 @@ library
hs-source-dirs:
src
build-depends:
aeson >=2.0 && <2.2,
base >=4.11 && <5,
bytestring >=0.10 && <0.12,
containers >=0.5 && <0.7,
exceptions >=0.8 && <0.11,
inline-c >=0.5 && <0.10,
mtl >=2.2.2 && <2.4,
scientific >=0.3.5 && <0.4,
string-conv >=0.1.2 && <0.3,
text >=1.2.0 && <2.1,
time >=1.8 && <1.14,
transformers >=0.5 && <0.7,
unliftio-core >=0.1 && <0.3,
aeson >=2.0 && <2.3,
base >=4.11 && <5,
bytestring >=0.10 && <0.12 || ^>=0.12.1,
containers >=0.5 && <0.7 || ^>=0.7,
exceptions >=0.8 && <0.11,
inline-c >=0.5 && <0.10,
mtl >=2.2.2 && <2.4,
scientific >=0.3.5 && <0.4,
string-conv >=0.1.2 && <0.3,
text >=1.2.0 && <2.1 || ^>=2.1.1,
time >=1.8 && <1.14 || ^>=1.14,
transformers >=0.5 && <0.7,
unliftio-core >=0.1 && <0.3,
unordered-containers >=0.2.8 && <0.3,
vector >=0.12 && <0.14
vector >=0.12 && <0.14

default-language: Haskell2010
include-dirs: quickjs
Expand All @@ -76,15 +75,15 @@ test-suite quickjs-hs-test
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base
, quickjs-hs -any
, aeson
, exceptions
, HUnit >=1.6.0.0
, QuickCheck >=2.9
, tasty >=1.0
, tasty-hunit >=0.10
, tasty-quickcheck >=0.9
, text
, unordered-containers
, vector
base,
quickjs-hs,
aeson,
exceptions,
HUnit >=1.6.0.0,
QuickCheck >=2.9,
tasty >=1.0,
tasty-hunit >=0.10,
tasty-quickcheck >=0.9,
text,
unordered-containers,
vector
Loading