shellwords 0.1.4.0 → 0.1.4.1
raw patch · 2 files changed
+3/−36 lines, 2 files
Files
- CHANGELOG.md +1/−35
- shellwords.cabal +2/−1
CHANGELOG.md view
@@ -1,35 +1,1 @@-## [*Unreleased*](https://github.com/pbrisbin/hs-shellwords/compare/v0.1.4.0...main)--## [v0.1.4.0](https://github.com/pbrisbin/hs-shellwords/compare/v0.1.3.2...v0.1.4.0)--- Add `quote` and `join` ([@999years](https://github.com/pbrisbin/hs-shellwords/pull/11))--## [v0.1.3.2](https://github.com/pbrisbin/hs-shellwords/compare/v0.1.3.1...v0.1.3.2)--- Fix bugs around `=` handling, adjacent strings, and escaped-backslash--## [v0.1.3.1](https://github.com/pbrisbin/hs-shellwords/compare/v0.1.3.0...v0.1.3.1)--- Fix incorrect lower bound on `base`--## [v0.1.3.0](https://github.com/pbrisbin/hs-shellwords/compare/v0.1.2.1...v0.1.3.0)--- Define reserved characters, to enable delimited parsing `$(<words)`-- Export `Parser`-related functions, to enable incorporating in a larger parser--## [v0.1.2.1](https://github.com/pbrisbin/hs-shellwords/compare/v0.1.2.0...v0.1.2.1)--- Strip surrounding whitespace before parsing-- Fix mis-handling of escaped spaces in certain kinds of flags--## [v0.1.2.0](https://github.com/pbrisbin/hs-shellwords/compare/v0.1.1.0...v0.1.2.0)--- `parse` works on `String` now, use `parseText` for the `Text` interface--## [v0.1.1.0](https://github.com/pbrisbin/hs-shellwords/compare/v0.1.0.0...v0.1.1.0)--- Bugfixes that I can't remember--## [v0.1.0.0](https://github.com/pbrisbin/hs-shellwords/tree/v0.1.0.0)--First released version.+See https://github.com/pbrisbin/hs-shellwords/releases
shellwords.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.18 name: shellwords-version: 0.1.4.0+version: 0.1.4.1 license: MIT license-file: LICENSE copyright: 2018 Patrick Brisbin@@ -52,6 +52,7 @@ test-suite hspec type: exitcode-stdio-1.0 main-is: Spec.hs+ build-tool-depends: hspec-discover:hspec-discover hs-source-dirs: test other-modules: ShellWords.ParseSpec