File tree Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ New features:
11
11
Bugfixes:
12
12
13
13
Other improvements:
14
+ - Fix warnings revealed by v0.14.1 PS release (#61 by @JordanMartinez )
15
+ - Install missing dependencies used in source code (#61 by @JordanMartinez )
14
16
15
17
## [ v8.0.0] ( https://github.com/purescript-contrib/purescript-uri/releases/tag/v8.0.0 ) - 2021-02-26
16
18
Original file line number Diff line number Diff line change 3
3
[ " aff"
4
4
, " arrays"
5
5
, " assert"
6
+ , " bifunctors"
7
+ , " console"
8
+ , " control"
9
+ , " effect"
10
+ , " either"
11
+ , " exceptions"
12
+ , " foldable-traversable"
13
+ , " gen"
6
14
, " integers"
7
15
, " js-uri"
8
- , " numbers"
16
+ , " maybe"
17
+ , " newtype"
9
18
, " parsing"
19
+ , " partial"
10
20
, " prelude"
11
21
, " profunctor-lenses"
12
22
, " quickcheck"
23
+ , " strings"
24
+ , " tailrec"
13
25
, " these"
14
26
, " transformers"
15
- , " unfoldable "
27
+ , " tuples "
16
28
]
17
29
, packages = ./ packages. dhall
18
30
, sources = [ " src/**/*.purs" , " test/**/*.purs" ]
Original file line number Diff line number Diff line change @@ -35,4 +35,4 @@ print ∷ PathNoScheme → String
35
35
print (PathNoScheme (Tuple head tail)) =
36
36
case tail of
37
37
[] → printSegmentNZNC head
38
- ps → printSegmentNZNC head <> " /" <> String .joinWith " /" (map printSegment tail)
38
+ _ → printSegmentNZNC head <> " /" <> String .joinWith " /" (map printSegment tail)
You can’t perform that action at this time.
0 commit comments