packages feed

pcre2 1.1.3 → 1.1.3.1

raw patch · 4 files changed

+8/−8 lines, 4 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

pcre2.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 493d0a40af47446f171f1b955de9cb2461cf083885afef889c4115ad50cb8f36+-- hash: 1aa96fd38f05db5559055a04ed7e3166d9f7b0ea252e3561bee7c388027a2fb6  name:           pcre2-version:        1.1.3+version:        1.1.3.1 synopsis:       Regular expressions via the PCRE2 C library (included) description:    Please see the README on GitHub at <https://github.com/sjshuck/hs-pcre2> category:       Text
src/c/config.h view
@@ -223,7 +223,7 @@ #define PACKAGE_NAME "PCRE2"  /* Define to the full name and version of this package. */-#define PACKAGE_STRING "PCRE2 10.35"+#define PACKAGE_STRING "PCRE2 10.36"  /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "pcre2"@@ -232,7 +232,7 @@ #define PACKAGE_URL ""  /* Define to the version of this package. */-#define PACKAGE_VERSION "10.35"+#define PACKAGE_VERSION "10.36"  /* The value of PARENS_NEST_LIMIT specifies the maximum depth of nested    parentheses (of any kind) in a pattern. This limits the amount of system@@ -357,7 +357,7 @@ #endif  /* Version number of package */-#define VERSION "10.35"+#define VERSION "10.36"  /* Define to 1 if on MINIX. */ /* #undef _MINIX */
src/c/pcre2.h view
@@ -44,9 +44,9 @@ /* The current PCRE version information. */  #define PCRE2_MAJOR           10-#define PCRE2_MINOR           35+#define PCRE2_MINOR           36 #define PCRE2_PRERELEASE      -#define PCRE2_DATE            2020-05-09+#define PCRE2_DATE            2020-12-04  /* When an application links to a PCRE DLL in Windows, the symbols that are imported have to be identified as such. When building PCRE2, the appropriate
test/Spec.hs view
@@ -224,7 +224,7 @@      where     issue :: Int -> Expectation -> Spec-    issue n = it $ "https://github.com/sjshuck/issues/" ++ show n+    issue n = it $ "https://github.com/sjshuck/pcre2/issues/" ++ show n  onlyCausesOneCompilation :: (Option -> Text -> a) -> Expectation onlyCausesOneCompilation regexWithOpt = do