Skip to content

Commit 58ab032

Browse files
authored
Merge pull request #153 from haskell-works/upgrade-haskell-build-orb-version
Upgrade to haskell-build-4.0.1
2 parents 7254dbd + 6ba937e commit 58ab032

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2.1
22

33
orbs:
4-
haskell: haskell-works/[email protected].0
4+
haskell: haskell-works/[email protected].1
55
github: haskell-works/[email protected]
66
hackage: haskell-works/[email protected]
77

hw-json.cabal

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ common word8 { build-depends: word8 >= 0.1
7575
common semigroups { if impl(ghc < 8 ) { build-depends: semigroups >= 0.16 && < 0.19 } }
7676

7777
common config
78-
default-language: Haskell2010
79-
ghc-options: -Wall -O2 -msse4.2
78+
default-language: Haskell2010
79+
ghc-options: -Wall -O2 -msse4.2
8080
if flag(sse42)
8181
ghc-options: -msse4.2
8282
if flag(bmi2) && impl(ghc >= 8.4.1)
@@ -150,10 +150,10 @@ executable hw-json
150150
, semigroups
151151
, text
152152
, vector
153-
main-is: Main.hs
154-
hs-source-dirs: app
155-
ghc-options: -threaded -rtsopts -with-rtsopts=-N
156-
build-depends: hw-json
153+
main-is: Main.hs
154+
hs-source-dirs: app
155+
ghc-options: -threaded -rtsopts -with-rtsopts=-N
156+
build-depends: hw-json
157157
other-modules:
158158
App.Commands
159159
App.Commands.CreateIndex
@@ -180,12 +180,12 @@ test-suite hw-json-test
180180
, text
181181
, transformers
182182
, vector
183-
type: exitcode-stdio-1.0
184-
main-is: Spec.hs
185-
build-depends: hw-json
186-
hs-source-dirs: test
187-
ghc-options: -threaded -rtsopts -with-rtsopts=-N
188-
build-tools: hspec-discover
183+
type: exitcode-stdio-1.0
184+
main-is: Spec.hs
185+
build-depends: hw-json
186+
hs-source-dirs: test
187+
ghc-options: -threaded -rtsopts -with-rtsopts=-N
188+
build-tool-depends: hspec-discover:hspec-discover
189189
other-modules:
190190
HaskellWorks.Data.Json.LightJsonSpec
191191
HaskellWorks.Data.Json.Simple.CursorSpec
@@ -204,8 +204,8 @@ benchmark bench
204204
, hw-json-standard-cursor
205205
, mmap
206206
, semigroups
207-
type: exitcode-stdio-1.0
208-
main-is: Main.hs
209-
hs-source-dirs: bench
210-
build-depends: hw-json
211-
other-modules: Paths_hw_json
207+
type: exitcode-stdio-1.0
208+
main-is: Main.hs
209+
hs-source-dirs: bench
210+
build-depends: hw-json
211+
other-modules: Paths_hw_json

0 commit comments

Comments
 (0)