diff --git a/CHANGELOG.md b/CHANGELOG.md index 5709034..5de7ac5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,13 @@ Notable changes to this project are documented in this file. The format is based Breaking changes: New features: +- Export `escape` implemented by @safareli in #33 (#46 by @JordanMartinez) Bugfixes: Other improvements: +- Fix warnings revealed by v0.14.1 PS release (#46 by @JordanMartinez) +- Install missing dependencies used in source code (#46 by @JordanMartinez) ## [v8.0.0](https://github.com/purescript-contrib/purescript-pathy/releases/tag/v8.0.0) - 2021-02-26 diff --git a/spago.dhall b/spago.dhall index f7adcd2..71d4607 100644 --- a/spago.dhall +++ b/spago.dhall @@ -1,15 +1,24 @@ { name = "pathy" , dependencies = - [ "console" + [ "arrays" + , "console" , "effect" + , "either" , "exceptions" + , "foldable-traversable" + , "gen" + , "identity" , "lists" + , "maybe" + , "newtype" + , "nonempty" , "partial" - , "profunctor" + , "prelude" , "psci-support" , "quickcheck" , "strings" - , "transformers" + , "tailrec" + , "tuples" , "typelevel-prelude" , "unsafe-coerce" ] diff --git a/src/Pathy/Printer.purs b/src/Pathy/Printer.purs index 2a6b1c5..87da562 100644 --- a/src/Pathy/Printer.purs +++ b/src/Pathy/Printer.purs @@ -10,6 +10,7 @@ module Pathy.Printer , dotEscaper , posixEscaper , windowsEscaper + , escape ) where import Prelude