pcre2 1.0.0 → 1.0.1
raw patch · 4 files changed
+18/−9 lines, 4 filesdep ~text
Dependency ranges changed: text
Files
- ChangeLog.md +9/−2
- README.md +2/−1
- pcre2.cabal +6/−5
- src/c/config.h +1/−1
ChangeLog.md view
@@ -1,3 +1,10 @@-# Changelog for pcre2+# Changelog and Acknowledgements -## Unreleased changes+## 1.0.1+* Fixed [#1](https://github.com/sjshuck/pcre2/1), where building on Windows+ would succeed but not run. Thanks Andrew!+* Try to adjust dependency version bounds to get it building on Hackage. Thanks+ snoyberg!++## 1.0.0+* Initial release.
README.md view
@@ -1,6 +1,7 @@ # pcre2 -Regular expressions for Haskell.+Regular expressions for Haskell. +https://hackage.haskell.org/package/pcre2 ## Teasers ```haskell
pcre2.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.12 name: pcre2-version: 1.0.0+version: 1.0.1 license: Apache-2.0 license-file: LICENSE copyright: 2020 Shlomo Shuck@@ -139,7 +139,8 @@ default-language: Haskell2010 include-dirs: src/c src/c/pcre2/src ghc-options:- -optc=-DPCRE2_CODE_UNIT_WIDTH=16 -optc=-Wno-discarded-qualifiers+ -optc=-DPCRE2_CODE_UNIT_WIDTH=16 -optc=-DPCRE2_STATIC=1+ -optc=-Wno-discarded-qualifiers -optc=-Wno-incompatible-pointer-types build-depends:@@ -147,7 +148,7 @@ containers >=0.6.2.1 && <0.7, mtl >=2.2.2 && <2.3, template-haskell >=2.15.0.0 && <2.16,- text >=1.2.4.0 && <1.3+ text >=1.2.3.2 && <1.3 test-suite pcre2-test type: exitcode-stdio-1.0@@ -164,7 +165,7 @@ mtl >=2.2.2 && <2.3, pcre2 -any, template-haskell >=2.15.0.0 && <2.16,- text >=1.2.4.0 && <1.3+ text >=1.2.3.2 && <1.3 benchmark pcre2-benchmarks type: exitcode-stdio-1.0@@ -183,4 +184,4 @@ pcre2 -any, regex-pcre-builtin >=0.95.1.3.8.43 && <0.96, template-haskell >=2.15.0.0 && <2.16,- text >=1.2.4.0 && <1.3+ text >=1.2.3.2 && <1.3
src/c/config.h view
@@ -274,7 +274,7 @@ /* #undef PCRE2_EXP_DEFN */ /* Define to any value if linking statically (TODO: make nice with Libtool) */-#define PCRE2_STATIC 1+/* #undef PCRE2_STATIC */ /* Define to necessary symbol if this constant uses a non-standard name on your system. */