curly-expander 0.3.0.1 → 0.3.0.2
raw patch · 3 files changed
+14/−4 lines, 3 filesdep ~basedep ~parsecdep ~text
Dependency ranges changed: base, parsec, text
Files
- CHANGELOG.md +4/−0
- README.md +1/−1
- curly-expander.cabal +9/−3
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for curly-expander +## 0.3.0.2+* Bumped up upper bounds and bumped down lower bounds of dependency constraints+* Fixed broken build in Hackage+ ## 0.3.0.0 * Added customCurlyExpand function.
README.md view
@@ -1,4 +1,4 @@ # curly-expander This is tool for curly brackets expanding, similar to bash curly expanding. It also contain an extended version of it. -Please refer to the package description on [Hackage](https://hackage.haskell.org/package/curly-expander-0.3.0.1/docs/Text-CurlyExpander.html) for more information.+Please refer to the package description on [Hackage](https://hackage.haskell.org/package/curly-expander/docs/Text-CurlyExpander.html) for more information.
curly-expander.cabal view
@@ -1,7 +1,7 @@ cabal-version: 3.0 name: curly-expander-version: 0.3.0.1+version: 0.3.0.2 synopsis: Curly braces (brackets) expanding description: A library for curly braces (brackets) expanding - similar to bash curly expanding. It also contain an extended version of it. @@ -17,16 +17,21 @@ build-type: Simple extra-source-files: CHANGELOG.md README.md + common deps ghc-options: -Wall -Wextra- build-depends: base >= 4.15 && < 4.16, parsec >= 3.1 && < 3.2, text >= 1.2 && < 1.3, default-language: Haskell2010+ build-depends: + base >= 4.14 && <4.17,+ parsec ^>= 3.1,+ text ^>= 1.2 common tests import: deps hs-source-dirs: tests build-depends: curly-expander + library import: deps exposed-modules: Text.CurlyExpander@@ -52,6 +57,7 @@ main-is: CustomCaseTest.hs type: exitcode-stdio-1.0 + source-repository head type: git location: https://github.com/stastnypremysl/curly-expander@@ -59,4 +65,4 @@ source-repository this type: git location: https://github.com/stastnypremysl/curly-expander- tag: 0.3.0.1+ tag: 0.3.0.2