regex 1.0.0.0 → 1.0.1.0
raw patch · 9 files changed
+31/−67 lines, 9 filesdep ~arraydep ~base-compatdep ~bytestringPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: array, base-compat, bytestring, containers, hashable, regex-base, regex-tdfa, regex-tdfa-text, template-haskell, text, time, time-locale-compat, transformers, unordered-containers
API changes (from Hackage documentation)
Files
- README.markdown +2/−44
- Text/RE/TDFA/ByteString.hs +1/−1
- Text/RE/TDFA/ByteString/Lazy.hs +1/−1
- Text/RE/TDFA/Sequence.hs +1/−1
- Text/RE/TDFA/String.hs +1/−1
- Text/RE/TDFA/Text.hs +1/−1
- Text/RE/TDFA/Text/Lazy.hs +1/−1
- changelog +6/−0
- regex.cabal +17/−17
README.markdown view
@@ -34,51 +34,9 @@ ## Road Map - ☒ 2017-01-26 v0.0.0.1 Pre-release (I)-- ☒ 2017-01-30 v0.0.0.2 Pre-release (II)-- ☒ 2017-02-18 v0.1.0.0 [Proposed core API with presentable Haddocks](https://github.com/iconnect/regex/milestone/1)-- ☒ 2017-02-19 v0.2.0.0 [Package split into regex and regex-examples](https://github.com/iconnect/regex/milestone/5)-- ☒ 2017-02-20 v0.2.0.1 [Remove library from regex-examples](https://github.com/iconnect/regex/issues/43)-- ☒ 2017-02-21 v0.2.0.2 [Fix tests for Hackage](https://github.com/iconnect/regex/issues/45)-- ☒ 2017-02-21 v0.2.0.3 Tweak README/index layout-- ☒ 2017-02-22 v0.2.0.4 [Repair re-gen-modules-test for Windows](https://github.com/iconnect/regex/issues/47)-- ☒ 2017-02-26 v0.3.0.0 [API adjustments](https://github.com/iconnect/regex/milestone/2)-- ☒ 2017-03-05 v0.5.0.0 [Ready for review: API, tutorials and examples finalized](https://github.com/iconnect/regex/issues/67)-- ☒ 2017-03-13 v0.6.0.0 [Split out PCRE](https://github.com/iconnect/regex/milestone/7)-- ☒ 2017-03-13 v0.6.0.1 [Fix .travis.yml release-stack script](https://github.com/iconnect/regex/issues/67)-- ☒ 2017-03-15 v0.7.0.0 [Better organization of API](https://github.com/iconnect/regex/milestone/8)-- ☒ 2017-03-16 v0.8.0.0 [Tidy up the API](https://github.com/iconnect/regex/milestone/10)-- ☒ 2017-03-24 v0.9.0.0 [Finish tidying up the API, Add type-safe replacement templates and exploit TemplateHaskellQuotes](https://github.com/iconnect/regex/milestone/9)-- ☒ 2017-03-27 v0.10.0.2 [Tweak Templates, Fix release scripts and update Haddocks commentary](https://github.com/iconnect/regex/milestone/12)-- ☒ 2017-03-28 v0.10.0.3 [Upgrade to LTS 8.6 and Improve Haddocks for Text.RE.{TDFA,PCRE}](https://github.com/iconnect/regex/milestone/13)-- ☒ 2017-03-29 v0.11.0.0 [Simplify the API](https://github.com/iconnect/regex/milestone/14)-- ☒ 2017-03-30 v0.11.1.0 [Fix the Haddocks](https://github.com/iconnect/regex/milestone/15)-- ☒ 2017-03-31 v0.12.0.0 [Move IsRegex into Text.RE](https://github.com/iconnect/regex/milestone/16)-- ☒ 2017-04-03 v0.13.0.0 [Protect findCaptureID and add Find, re-sort-imports](https://github.com/iconnect/regex/milestone/17)-- ☒ 2017-04-04 v0.14.0.0 [Move IsOption, rename Find functions](https://github.com/iconnect/regex/milestone/18)- ☒ 2017-04-10 v1.0.0.0 [First stable release](https://github.com/iconnect/regex/milestone/3)++ ☒ 2017-06-03 v1.0.1.0 [PCRE.Text, strict PVP, Update Stackage vrns, add re-top](https://github.com/iconnect/regex/milestone/19) ☐ 2017-08-31 v2.0.0.0 [Fast text replacement with benchmarks](https://github.com/iconnect/regex/milestone/4)
Text/RE/TDFA/ByteString.hs view
@@ -96,7 +96,7 @@ import Text.RE.ZeInternals.TDFA import Text.Regex.Base import qualified Text.Regex.TDFA as TDFA-+-- NB regex-base instance imports maybe be needed for for some API modules -- | find all the matches in the argument text; e.g., to count the number -- of naturals in s:
Text/RE/TDFA/ByteString/Lazy.hs view
@@ -96,7 +96,7 @@ import Text.RE.ZeInternals.TDFA import Text.Regex.Base import qualified Text.Regex.TDFA as TDFA-+-- NB regex-base instance imports maybe be needed for for some API modules -- | find all the matches in the argument text; e.g., to count the number -- of naturals in s:
Text/RE/TDFA/Sequence.hs view
@@ -96,7 +96,7 @@ import Text.RE.ZeInternals.TDFA import Text.Regex.Base import qualified Text.Regex.TDFA as TDFA-+-- NB regex-base instance imports maybe be needed for for some API modules -- | find all the matches in the argument text; e.g., to count the number -- of naturals in s:
Text/RE/TDFA/String.hs view
@@ -96,7 +96,7 @@ import Text.RE.ZeInternals.TDFA import Text.Regex.Base import qualified Text.Regex.TDFA as TDFA-+-- NB regex-base instance imports maybe be needed for for some API modules -- | find all the matches in the argument text; e.g., to count the number -- of naturals in s:
Text/RE/TDFA/Text.hs view
@@ -96,7 +96,7 @@ import Text.RE.ZeInternals.TDFA import Text.Regex.Base import qualified Text.Regex.TDFA as TDFA-+-- NB regex-base instance imports maybe be needed for for some API modules -- | find all the matches in the argument text; e.g., to count the number -- of naturals in s:
Text/RE/TDFA/Text/Lazy.hs view
@@ -96,7 +96,7 @@ import Text.RE.ZeInternals.TDFA import Text.Regex.Base import qualified Text.Regex.TDFA as TDFA-+-- NB regex-base instance imports maybe be needed for for some API modules -- | find all the matches in the argument text; e.g., to count the number -- of naturals in s:
changelog view
@@ -1,5 +1,11 @@ -*-change-log-*- +1.0.1.0 Chris Dornan <chris.dornan@irisconnect.co.uk> 2017-06-05+ * Text.RE.PCRE.Text[.Lazy] (#58)+ * Update LSTHaskell versions (#136)+ * Add re-top example (#137)+ * Regex library to conform with strict PVP (#138)+ 1.0.0.0 Chris Dornan <chris.dornan@irisconnect.co.uk> 2017-04-10 * Rewrite tutorials (#113) * Add Text.RE.Tools.IsRegex (#122)
regex.cabal view
@@ -1,5 +1,5 @@ Name: regex-Version: 1.0.0.0+Version: 1.0.1.0 Synopsis: Toolkit for regex-base Description: A regular expression toolkit for regex-base with compile-time checking of RE syntax, data types for@@ -32,7 +32,7 @@ Source-Repository this Type: git Location: https://github.com/iconnect/regex.git- Tag: 1.0.0.0+ Tag: 1.0.1.0 @@ -123,21 +123,21 @@ -Wwarn Build-depends:- array >= 0.4- , base >= 4 && < 5- , base-compat >= 0.6.0- , bytestring >= 0.10.2.0- , containers >= 0.4- , hashable >= 1.2.3.3- , regex-base >= 0.93.2- , regex-tdfa >= 1.2.0- , regex-tdfa-text >= 1.0.0.3- , template-haskell >= 2.7- , text >= 1.2.0.6- , time >= 1.4.2- , time-locale-compat >= 0.1.0.1- , transformers >= 0.2.2- , unordered-containers >= 0.2.5.1+ array >= 0.4 && < 0.6+ , base >= 4 && < 5+ , base-compat >= 0.6 && < 0.10+ , bytestring == 0.10.*+ , containers >= 0.4 && < 0.6+ , hashable == 1.2.*+ , regex-base == 0.93.*+ , regex-tdfa == 1.2.*+ , regex-tdfa-text == 1.0.*+ , template-haskell >= 2.7 && < 2.12+ , text == 1.2.*+ , time >= 1.4.2 && < 1.9+ , time-locale-compat == 0.1.*+ , transformers >= 0.2.2 && < 0.6+ , unordered-containers == 0.2.* -- Generated with re-gen-cabals