Skip to content

Commit fa818d2

Browse files
authored
Merge pull request #16 from justinwoo/0.11
updates for 0.11
2 parents e2c5df9 + 2ad1dea commit fa818d2

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

bower.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
"package.json"
1818
],
1919
"dependencies": {
20-
"purescript-globals": "^2.0.0",
21-
"purescript-integers": "^2.0.0",
22-
"purescript-maps": "^2.0.0",
23-
"purescript-pathy": "^3.0.0",
24-
"purescript-string-parsers": "^2.0.0",
25-
"purescript-unfoldable": "^2.0.0"
20+
"purescript-globals": "^3.0.0",
21+
"purescript-integers": "^3.0.0",
22+
"purescript-maps": "^3.0.0",
23+
"purescript-pathy": "^4.0.0",
24+
"purescript-string-parsers": "^3.0.0",
25+
"purescript-unfoldable": "^3.0.0"
2626
},
2727
"devDependencies": {
28-
"purescript-test-unit": "10.0.1"
28+
"purescript-test-unit": "11.0.0"
2929
}
3030
}

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
"test": "pulp test"
77
},
88
"devDependencies": {
9-
"eslint": "^3.8.1",
10-
"pulp": "^9.0.1",
11-
"purescript": "^0.10.1",
12-
"purescript-psa": "^0.3.9",
13-
"rimraf": "^2.5.4"
9+
"eslint": "^3.19.0",
10+
"pulp": "^11.0.0",
11+
"purescript": "^0.11.3",
12+
"purescript-psa": "^0.5.1",
13+
"rimraf": "^2.6.1"
1414
}
1515
}

src/Data/URI/Path.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ parsePathAbEmpty p
4444

4545
parsePathAbsolute p. Parser p Parser p
4646
parsePathAbsolute p = wrapParser p $ do
47-
string "/"
47+
_ <- string "/"
4848
start ← parseSegmentNonZero
4949
rest ← joinWith "" <$> many (append <$> string "/" <*> parseSegment)
5050
pure $ "/" <> start <> rest

0 commit comments

Comments
 (0)