diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e5a079..3e6877d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ New features: Bugfixes: Other improvements: +- Fix warnings revealed by v0.14.1 PS release (#61 by @JordanMartinez) +- Install missing dependencies used in source code (#61 by @JordanMartinez) ## [v8.0.0](https://github.com/purescript-contrib/purescript-uri/releases/tag/v8.0.0) - 2021-02-26 diff --git a/spago.dhall b/spago.dhall index 9b9c0fd..a155613 100644 --- a/spago.dhall +++ b/spago.dhall @@ -3,16 +3,28 @@ [ "aff" , "arrays" , "assert" + , "bifunctors" + , "console" + , "control" + , "effect" + , "either" + , "exceptions" + , "foldable-traversable" + , "gen" , "integers" , "js-uri" - , "numbers" + , "maybe" + , "newtype" , "parsing" + , "partial" , "prelude" , "profunctor-lenses" , "quickcheck" + , "strings" + , "tailrec" , "these" , "transformers" - , "unfoldable" + , "tuples" ] , packages = ./packages.dhall , sources = [ "src/**/*.purs", "test/**/*.purs" ] diff --git a/src/URI/Path/NoScheme.purs b/src/URI/Path/NoScheme.purs index bbdaad5..52eeb34 100644 --- a/src/URI/Path/NoScheme.purs +++ b/src/URI/Path/NoScheme.purs @@ -35,4 +35,4 @@ print ∷ PathNoScheme → String print (PathNoScheme (Tuple head tail)) = case tail of [] → printSegmentNZNC head - ps → printSegmentNZNC head <> "/" <> String.joinWith "/" (map printSegment tail) + _ → printSegmentNZNC head <> "/" <> String.joinWith "/" (map printSegment tail)