Skip to content

Commit f3a02ae

Browse files
committed
bump: version of base from 4.13 to 4.18
1 parent ee38646 commit f3a02ae

File tree

8 files changed

+21
-21
lines changed

8 files changed

+21
-21
lines changed

rollbar-cli/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ghc-options:
2222
- -Wall
2323

2424
dependencies:
25-
- base >= 4.13 && < 5
25+
- base >= 4.18 && < 5
2626

2727
_exe-ghc-options: &exe-ghc-options
2828
- -threaded

rollbar-cli/rollbar-cli.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cabal-version: 1.12
44
--
55
-- see: https://github.com/sol/hpack
66
--
7-
-- hash: 8f6bd66ca2b431b7af154b0cbaabb8381a717534c43db1561c9d4ebc4486880d
7+
-- hash: 8ee6ee554171cde826ad2a633c4c22198ce024643369d946a14289bd549dc0c2
88

99
name: rollbar-cli
1010
version: 1.1.0
@@ -39,7 +39,7 @@ library
3939
src
4040
ghc-options: -Wall
4141
build-depends:
42-
base >=4.13 && <5
42+
base >=4.18 && <5
4343
, optparse-applicative >=0.14 && <1
4444
, rollbar-client >=1.0 && <2
4545
default-language: Haskell2010
@@ -52,7 +52,7 @@ executable rollbar
5252
app
5353
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
5454
build-depends:
55-
base >=4.13 && <5
55+
base >=4.18 && <5
5656
, rollbar-cli
5757
, rollbar-client
5858
default-language: Haskell2010
@@ -66,6 +66,6 @@ test-suite spec
6666
test
6767
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
6868
build-depends:
69-
base >=4.13 && <5
69+
base >=4.18 && <5
7070
, rollbar-cli
7171
default-language: Haskell2010

rollbar-client/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ghc-options:
2222
- -Wall
2323

2424
dependencies:
25-
- base >= 4.13 && < 5
25+
- base >= 4.18 && < 5
2626

2727
flags:
2828
example:

rollbar-client/rollbar-client.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cabal-version: 1.12
44
--
55
-- see: https://github.com/sol/hpack
66
--
7-
-- hash: 787806f62c45b9f62f8493c73a0fefe94c7f3f3e096d3f599c6b5e601b184ca1
7+
-- hash: cfe8379f09ac3d6016064c0a450b03ae0f1918d0ccd4050dc686a82864c59d71
88

99
name: rollbar-client
1010
version: 1.1.0
@@ -50,7 +50,7 @@ library
5050
ghc-options: -Wall
5151
build-depends:
5252
aeson >=2.0 && <3
53-
, base >=4.13 && <5
53+
, base >=4.18 && <5
5454
, bytestring >=0.10 && <1
5555
, directory >=1.3 && <2
5656
, exceptions >=0.10 && <1
@@ -70,7 +70,7 @@ executable client-example
7070
example
7171
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
7272
build-depends:
73-
base >=4.13 && <5
73+
base >=4.18 && <5
7474
, rollbar-client
7575
, text
7676
default-language: Haskell2010
@@ -92,7 +92,7 @@ test-suite spec
9292
hspec-discover:hspec-discover >=2.7 && <3
9393
build-depends:
9494
aeson
95-
, base >=4.13 && <5
95+
, base >=4.18 && <5
9696
, bytestring >=0.10 && <1
9797
, hspec >=2.7 && <3
9898
, mtl

rollbar-wai/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ghc-options:
2323
- -Wall
2424

2525
dependencies:
26-
- base >= 4.13 && < 5
26+
- base >= 4.18 && < 5
2727

2828
flags:
2929
example:

rollbar-wai/rollbar-wai.cabal

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cabal-version: 1.12
44
--
55
-- see: https://github.com/sol/hpack
66
--
7-
-- hash: cf2227064192dc4c6cb8aa19776ed2e3112241ef9c24c3ede8f990bea30bbc7d
7+
-- hash: c2711649ac4ce6d4ff340d52040ad26c62dda61d3bc0fe63400c1114a333336c
88

99
name: rollbar-wai
1010
version: 1.1.0
@@ -46,15 +46,15 @@ library
4646
ghc-options: -Wall
4747
build-depends:
4848
aeson >=2.0 && <3
49-
, base >=4.13 && <5
49+
, base >=4.18 && <5
5050
, bytestring >=0.10 && <1
5151
, case-insensitive >=1.2 && <2
5252
, http-types >=0.12 && <1
5353
, rollbar-client >=1.0 && <2
5454
, text >=1.2 && <2.2
5555
, unordered-containers >=0.2 && <1
5656
, wai >=3.2 && <4
57-
, wai-extra >=3.0
57+
, wai-extra >=3.0 && <4
5858
default-language: Haskell2010
5959

6060
executable wai-example
@@ -65,7 +65,7 @@ executable wai-example
6565
example
6666
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
6767
build-depends:
68-
base >=4.13 && <5
68+
base >=4.18 && <5
6969
, rollbar-client
7070
, rollbar-wai
7171
, wai
@@ -89,7 +89,7 @@ test-suite spec
8989
hspec-discover:hspec-discover >=2.7 && <3
9090
build-depends:
9191
aeson
92-
, base >=4.13 && <5
92+
, base >=4.18 && <5
9393
, hspec >=2.7 && <3
9494
, http-types
9595
, mtl >=2.2 && <3

rollbar-yesod/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ghc-options:
2424
- -Wall
2525

2626
dependencies:
27-
- base >= 4.13 && < 5
27+
- base >= 4.18 && < 5
2828

2929
flags:
3030
example:

rollbar-yesod/rollbar-yesod.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cabal-version: 1.12
44
--
55
-- see: https://github.com/sol/hpack
66
--
7-
-- hash: 2b59759f80250c1aa7d3765ef87fdd788e005eae91db24bd89f4c820ed3988c2
7+
-- hash: 4db0e774c58481a01ca154a66062cb3ac4dd8ba09bb9e11f54dfcdf039fc001e
88

99
name: rollbar-yesod
1010
version: 1.1.0
@@ -45,7 +45,7 @@ library
4545
src
4646
ghc-options: -Wall
4747
build-depends:
48-
base >=4.13 && <5
48+
base >=4.18 && <5
4949
, rollbar-client >=1.0 && <2
5050
, rollbar-wai >=1.0 && <2
5151
, unliftio >=0.2 && <1
@@ -61,7 +61,7 @@ executable yesod-example
6161
example
6262
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
6363
build-depends:
64-
base >=4.13 && <5
64+
base >=4.18 && <5
6565
, rollbar-client
6666
, rollbar-yesod
6767
, warp >=3.3 && <4
@@ -84,7 +84,7 @@ test-suite spec
8484
build-tool-depends:
8585
hspec-discover:hspec-discover >=2.7 && <3
8686
build-depends:
87-
base >=4.13 && <5
87+
base >=4.18 && <5
8888
, hspec >=2.7 && <3
8989
, rollbar-client
9090
, rollbar-yesod

0 commit comments

Comments
 (0)