Skip to content

Commit a6e1d39

Browse files
authored
Update to 0.11.6 (#81)
* Update to 0.11.6 * Fix for addDefaultImport * Use --fast for now, so hopefully Travis will finish
1 parent eaecf65 commit a6e1d39

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ before_install:
2222

2323
install:
2424
- echo "$(ghc --version) [$(ghc --print-project-git-commit-id 2> /dev/null || echo '?')]"
25-
- stack --no-terminal -j1 --install-ghc build --only-dependencies
25+
- stack --no-terminal -j1 --install-ghc build --only-dependencies --fast
2626

2727
script:
28-
- stack --no-terminal -j1 build
28+
- stack --no-terminal -j1 build --fast
2929

3030
notifications:
3131
email: true

server/Main.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ server bundled externs initEnv port = do
6969
Right (_, m) | P.getModuleName m == P.ModuleName [P.ProperName "Main"] -> do
7070
(resultMay, _) <- runLogger' . runExceptT . flip runReaderT P.defaultOptions $ do
7171
((P.Module ss coms moduleName elaborated exps, env), nextVar) <- P.runSupplyT 0 $ do
72-
[desugared] <- P.desugar externs [P.addDefaultImport (P.ModuleName [P.ProperName "Prim"]) m]
72+
[desugared] <- P.desugar externs [P.addDefaultImport (P.Qualified Nothing (P.ModuleName [P.ProperName "Prim"])) m]
7373
P.runCheck' (P.emptyCheckState initEnv) $ P.typeCheckModule desugared
7474
regrouped <- P.createBindingGroups moduleName . P.collapseBindingGroups $ elaborated
7575
let mod' = P.Module ss coms moduleName regrouped exps

stack.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ flags: {}
33
packages:
44
- '.'
55
extra-deps:
6-
- purescript-0.11.2
6+
- purescript-0.11.6
77
- pipes-http-1.0.5

staging/core/psc-package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "core",
3-
"set": "psc-0.11.1",
3+
"set": "psc-0.11.6",
44
"source": "https://github.com/purescript/package-sets.git",
55
"depends": [
66
"arrays",

staging/thermite/psc-package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "staging",
3-
"set": "psc-0.11.3",
3+
"set": "psc-0.11.6",
44
"source": "https://github.com/purescript/package-sets.git",
55
"depends": [
66
"react-dom",

trypurescript.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ executable trypurescript
2020
filepath -any,
2121
Glob -any,
2222
scotty -any,
23-
purescript ==0.11.2,
23+
purescript ==0.11.6,
2424
containers -any,
2525
http-types >= 0.8.5,
2626
transformers ==0.5.*,

0 commit comments

Comments
 (0)