Skip to content

Commit 7f6f424

Browse files
josephfrazierslevithan
authored andcommitted
Update version number in readme and src
1 parent d0ecf00 commit 7f6f424

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ XRegExp('^\\pS$').test('💩'); // -> true
119119

120120
Opting in to astral mode disables the use of `\p{…}` and `\P{…}` within character classes. In astral mode, use e.g. `(\pL|[0-9_])+` instead of `[\pL0-9_]+`.
121121

122-
XRegExp uses Unicode 11.0.0.
122+
XRegExp uses Unicode 12.1.0.
123123

124124
### XRegExp.build
125125

src/addons/unicode-blocks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default (XRegExp) => {
1414
* `\p{InBasicLatin}`. Token names are case insensitive, and any spaces, hyphens, and
1515
* underscores are ignored.
1616
*
17-
* Uses Unicode 11.0.0.
17+
* Uses Unicode 12.1.0.
1818
*
1919
* @requires XRegExp, Unicode Base
2020
*/

src/addons/unicode-categories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default (XRegExp) => {
1414
* category descriptions in UAX #44 <http://unicode.org/reports/tr44/#GC_Values_Table>. Token
1515
* names are case insensitive, and any spaces, hyphens, and underscores are ignored.
1616
*
17-
* Uses Unicode 11.0.0.
17+
* Uses Unicode 12.1.0.
1818
*
1919
* @requires XRegExp, Unicode Base
2020
*/

src/addons/unicode-properties.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default (XRegExp) => {
4343
*
4444
* Token names are case insensitive, and any spaces, hyphens, and underscores are ignored.
4545
*
46-
* Uses Unicode 11.0.0.
46+
* Uses Unicode 12.1.0.
4747
*
4848
* @requires XRegExp, Unicode Base
4949
*/

src/addons/unicode-scripts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default (XRegExp) => {
1313
* Adds support for all Unicode scripts. E.g., `\p{Latin}`. Token names are case insensitive,
1414
* and any spaces, hyphens, and underscores are ignored.
1515
*
16-
* Uses Unicode 11.0.0.
16+
* Uses Unicode 12.1.0.
1717
*
1818
* @requires XRegExp, Unicode Base
1919
*/

0 commit comments

Comments
 (0)