Skip to content

Commit 75d0034

Browse files
committed
update READMEs
1 parent 0357efe commit 75d0034

File tree

3 files changed

+26
-21
lines changed

3 files changed

+26
-21
lines changed

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22

33
regex is a regular expression toolkit for regex-base with:
44

5-
* text-replacement operations with named captures;
5+
* a text-replacement toolkit with type-safe text-replacement templates;
66
* special datatypes for matches and captures;
77
* compile-time checking of RE syntax;
88
* a unified means of controlling case-sensitivity and multi-line options;
99
* high-level AWK-like tools for building text processing apps;
1010
* the option of using match operators with reduced polymorphism on the
11-
text and/or result types;
11+
text and result types;
1212
* regular expression macros including:
1313
+ a number of useful RE macros;
1414
+ a test bench for testing and documenting new macro environments;
1515
* built-in support for the TDFA and PCRE backends;
16-
* comprehensive documentation and copious examples.
16+
* comprehensive documentation, tutorials and copious examples.
1717

1818

1919
See the [About page](http://about.regex.uk) for details.
@@ -52,7 +52,8 @@ two packages:
5252
- [X] 2017-03-27 v0.10.0.2 [Tweak Templates, Fix release scripts and update Haddocks commentary](https://github.com/iconnect/regex/milestone/12)
5353
- [X] 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)
5454
- [X] 2017-03-29 v0.11.0.0 [Simplify the API](https://github.com/iconnect/regex/milestone/14)
55-
- [ ] 2017-03-31 v1.0.0.0 [First stable release](https://github.com/iconnect/regex/milestone/3)
55+
- [X] 2017-03-29 v0.11.1.0 [Fix the Haddocks](https://github.com/iconnect/regex/milestone/15)
56+
- [ ] 2017-04-03 v1.0.0.0 [First stable release](https://github.com/iconnect/regex/milestone/3)
5657
- [ ] 2017-08-31 v2.0.0.0 [Fast text replacement with benchmarks](https://github.com/iconnect/regex/milestone/4)
5758

5859

@@ -89,9 +90,9 @@ See the [Tutorial page](http://tutorial.regex.uk) and
8990

9091
If you have any feedback or suggestion then please drop us a line.
9192

92-
&nbsp;&nbsp;&nbsp;&nbsp;`t` [&#64;hregex](https://twitter.com/hregex)<br/>
93-
&nbsp;&nbsp;&nbsp;&nbsp;`e` maintainers@regex.uk<br/>
94-
&nbsp;&nbsp;&nbsp;&nbsp;`w` http://issues.regex.uk
93+
* `t` [&#64;hregex](https://twitter.com/hregex)<br/>
94+
* `e` maintainers@regex.uk<br/>
95+
* `w` http://issues.regex.uk
9596

9697
The [Contact page](http://contact.regex.uk) has more details.
9798

lib/README-regex-examples.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22

33
regex is a regular expression toolkit for regex-base with:
44

5-
* text-replacement operations with named captures;
5+
* a text-replacement toolkit with type-safe text-replacement templates;
66
* special datatypes for matches and captures;
77
* compile-time checking of RE syntax;
88
* a unified means of controlling case-sensitivity and multi-line options;
99
* high-level AWK-like tools for building text processing apps;
1010
* the option of using match operators with reduced polymorphism on the
11-
text and/or result types;
11+
text and result types;
1212
* regular expression macros including:
1313
+ a number of useful RE macros;
1414
+ a test bench for testing and documenting new macro environments;
1515
* built-in support for the TDFA and PCRE backends;
16-
* comprehensive documentation and copious examples.
16+
* comprehensive documentation, tutorials and copious examples.
1717

1818

1919
See the [About page](http://about.regex.uk) for details.
@@ -70,7 +70,9 @@ two packages:
7070

7171
&nbsp;&nbsp;&nbsp;&nbsp;&#x2612;&nbsp;&nbsp;2017-03-29 v0.11.0.0 [Simplify the API](https://github.com/iconnect/regex/milestone/14)
7272

73-
&nbsp;&nbsp;&nbsp;&nbsp;&#x2610;&nbsp;&nbsp;2017-03-31 v1.0.0.0 [First stable release](https://github.com/iconnect/regex/milestone/3)
73+
&nbsp;&nbsp;&nbsp;&nbsp;&#x2612;&nbsp;&nbsp;2017-03-29 v0.11.1.0 [Fix the Haddocks](https://github.com/iconnect/regex/milestone/15)
74+
75+
&nbsp;&nbsp;&nbsp;&nbsp;&#x2610;&nbsp;&nbsp;2017-04-03 v1.0.0.0 [First stable release](https://github.com/iconnect/regex/milestone/3)
7476

7577
&nbsp;&nbsp;&nbsp;&nbsp;&#x2610;&nbsp;&nbsp;2017-08-31 v2.0.0.0 [Fast text replacement with benchmarks](https://github.com/iconnect/regex/milestone/4)
7678

@@ -109,9 +111,9 @@ See the [Tutorial page](http://tutorial.regex.uk) and
109111

110112
If you have any feedback or suggestion then please drop us a line.
111113

112-
&nbsp;&nbsp;&nbsp;&nbsp;`t` [&#64;hregex](https://twitter.com/hregex)\n
113-
&nbsp;&nbsp;&nbsp;&nbsp;`e` maintainers@regex.uk\n
114-
&nbsp;&nbsp;&nbsp;&nbsp;`w` http://issues.regex.uk
114+
* `t` [&#64;hregex](https://twitter.com/hregex)\n
115+
* `e` maintainers@regex.uk\n
116+
* `w` http://issues.regex.uk
115117

116118
The [Contact page](http://contact.regex.uk) has more details.
117119

lib/README-regex.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22

33
regex is a regular expression toolkit for regex-base with:
44

5-
* text-replacement operations with named captures;
5+
* a text-replacement toolkit with type-safe text-replacement templates;
66
* special datatypes for matches and captures;
77
* compile-time checking of RE syntax;
88
* a unified means of controlling case-sensitivity and multi-line options;
99
* high-level AWK-like tools for building text processing apps;
1010
* the option of using match operators with reduced polymorphism on the
11-
text and/or result types;
11+
text and result types;
1212
* regular expression macros including:
1313
+ a number of useful RE macros;
1414
+ a test bench for testing and documenting new macro environments;
1515
* built-in support for the TDFA and PCRE backends;
16-
* comprehensive documentation and copious examples.
16+
* comprehensive documentation, tutorials and copious examples.
1717

1818

1919
See the [About page](http://about.regex.uk) for details.
@@ -70,7 +70,9 @@ two packages:
7070

7171
&nbsp;&nbsp;&nbsp;&nbsp;&#x2612;&nbsp;&nbsp;2017-03-29 v0.11.0.0 [Simplify the API](https://github.com/iconnect/regex/milestone/14)
7272

73-
&nbsp;&nbsp;&nbsp;&nbsp;&#x2610;&nbsp;&nbsp;2017-03-31 v1.0.0.0 [First stable release](https://github.com/iconnect/regex/milestone/3)
73+
&nbsp;&nbsp;&nbsp;&nbsp;&#x2612;&nbsp;&nbsp;2017-03-29 v0.11.1.0 [Fix the Haddocks](https://github.com/iconnect/regex/milestone/15)
74+
75+
&nbsp;&nbsp;&nbsp;&nbsp;&#x2610;&nbsp;&nbsp;2017-04-03 v1.0.0.0 [First stable release](https://github.com/iconnect/regex/milestone/3)
7476

7577
&nbsp;&nbsp;&nbsp;&nbsp;&#x2610;&nbsp;&nbsp;2017-08-31 v2.0.0.0 [Fast text replacement with benchmarks](https://github.com/iconnect/regex/milestone/4)
7678

@@ -109,9 +111,9 @@ See the [Tutorial page](http://tutorial.regex.uk) and
109111

110112
If you have any feedback or suggestion then please drop us a line.
111113

112-
&nbsp;&nbsp;&nbsp;&nbsp;`t` [&#64;hregex](https://twitter.com/hregex)\n
113-
&nbsp;&nbsp;&nbsp;&nbsp;`e` maintainers@regex.uk\n
114-
&nbsp;&nbsp;&nbsp;&nbsp;`w` http://issues.regex.uk
114+
* `t` [&#64;hregex](https://twitter.com/hregex)\n
115+
* `e` maintainers@regex.uk\n
116+
* `w` http://issues.regex.uk
115117

116118
The [Contact page](http://contact.regex.uk) has more details.
117119

0 commit comments

Comments
 (0)