Skip to content

Commit

Permalink
Update version number in readme and src
Browse files Browse the repository at this point in the history
  • Loading branch information
josephfrazier authored and slevithan committed Jan 29, 2020
1 parent d0ecf00 commit 7f6f424
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ XRegExp('^\\pS$').test('💩'); // -> true

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_]+`.

XRegExp uses Unicode 11.0.0.
XRegExp uses Unicode 12.1.0.

### XRegExp.build

Expand Down
2 changes: 1 addition & 1 deletion src/addons/unicode-blocks.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default (XRegExp) => {
* `\p{InBasicLatin}`. Token names are case insensitive, and any spaces, hyphens, and
* underscores are ignored.
*
* Uses Unicode 11.0.0.
* Uses Unicode 12.1.0.
*
* @requires XRegExp, Unicode Base
*/
Expand Down
2 changes: 1 addition & 1 deletion src/addons/unicode-categories.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default (XRegExp) => {
* category descriptions in UAX #44 <http://unicode.org/reports/tr44/#GC_Values_Table>. Token
* names are case insensitive, and any spaces, hyphens, and underscores are ignored.
*
* Uses Unicode 11.0.0.
* Uses Unicode 12.1.0.
*
* @requires XRegExp, Unicode Base
*/
Expand Down
2 changes: 1 addition & 1 deletion src/addons/unicode-properties.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default (XRegExp) => {
*
* Token names are case insensitive, and any spaces, hyphens, and underscores are ignored.
*
* Uses Unicode 11.0.0.
* Uses Unicode 12.1.0.
*
* @requires XRegExp, Unicode Base
*/
Expand Down
2 changes: 1 addition & 1 deletion src/addons/unicode-scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default (XRegExp) => {
* Adds support for all Unicode scripts. E.g., `\p{Latin}`. Token names are case insensitive,
* and any spaces, hyphens, and underscores are ignored.
*
* Uses Unicode 11.0.0.
* Uses Unicode 12.1.0.
*
* @requires XRegExp, Unicode Base
*/
Expand Down

0 comments on commit 7f6f424

Please sign in to comment.