Skip to content

Commit

Permalink
Release v4.3.0 (#283)
Browse files Browse the repository at this point in the history
Changes include:

* Upgrading from Unicode 11.0.0 to Unicode 12.1.0: #278
* Upgrading from `@babel/runtime-corejs2` to `@babel/runtime-corejs3`: #280

To generate this commit, I followed the steps at #205 (comment)

See more context at #280 (comment)
  • Loading branch information
josephfrazier authored Feb 11, 2020
1 parent 2662b2b commit 1623cfe
Show file tree
Hide file tree
Showing 13 changed files with 7,483 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# XRegExp 4.2.4
# XRegExp 4.3.0

[![Build Status](https://travis-ci.org/slevithan/xregexp.svg?branch=master)](https://travis-ci.org/slevithan/xregexp)

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "xregexp",
"version": "4.2.4",
"version": "4.3.0",
"description": "Extended regular expressions",
"homepage": "http://xregexp.com/",
"author": "Steven Levithan <steves_list@hotmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion src/addons/build.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* XRegExp.build 4.2.4
* XRegExp.build 4.3.0
* <xregexp.com>
* Steven Levithan (c) 2012-present MIT License
*/
Expand Down
2 changes: 1 addition & 1 deletion src/addons/matchrecursive.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* XRegExp.matchRecursive 4.2.4
* XRegExp.matchRecursive 4.3.0
* <xregexp.com>
* Steven Levithan (c) 2009-present MIT License
*/
Expand Down
2 changes: 1 addition & 1 deletion src/addons/unicode-base.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* XRegExp Unicode Base 4.2.4
* XRegExp Unicode Base 4.3.0
* <xregexp.com>
* Steven Levithan (c) 2008-present MIT License
*/
Expand Down
2 changes: 1 addition & 1 deletion src/addons/unicode-blocks.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* XRegExp Unicode Blocks 4.2.4
* XRegExp Unicode Blocks 4.3.0
* <xregexp.com>
* Steven Levithan (c) 2010-present MIT License
* Unicode data by Mathias Bynens <mathiasbynens.be>
Expand Down
2 changes: 1 addition & 1 deletion src/addons/unicode-categories.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* XRegExp Unicode Categories 4.2.4
* XRegExp Unicode Categories 4.3.0
* <xregexp.com>
* Steven Levithan (c) 2010-present MIT License
* Unicode data by Mathias Bynens <mathiasbynens.be>
Expand Down
2 changes: 1 addition & 1 deletion src/addons/unicode-properties.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* XRegExp Unicode Properties 4.2.4
* XRegExp Unicode Properties 4.3.0
* <xregexp.com>
* Steven Levithan (c) 2012-present MIT License
* Unicode data by Mathias Bynens <mathiasbynens.be>
Expand Down
2 changes: 1 addition & 1 deletion src/addons/unicode-scripts.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* XRegExp Unicode Scripts 4.2.4
* XRegExp Unicode Scripts 4.3.0
* <xregexp.com>
* Steven Levithan (c) 2010-present MIT License
* Unicode data by Mathias Bynens <mathiasbynens.be>
Expand Down
4 changes: 2 additions & 2 deletions src/xregexp.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* XRegExp 4.2.4
* XRegExp 4.3.0
* <xregexp.com>
* Steven Levithan (c) 2007-present MIT License
*/
Expand Down Expand Up @@ -649,7 +649,7 @@ XRegExp.prototype = new RegExp();
* @memberOf XRegExp
* @type String
*/
XRegExp.version = '4.2.4';
XRegExp.version = '4.3.0';

// ==--------------------------==
// Public methods
Expand Down
1 change: 1 addition & 0 deletions tests/perf/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
var match = /[?&]version=([^&]+)/.exec(location.search);
var version = match ? match[1] : null;
var knownVersion = {
'4.3.0': true,
'4.2.4': true,
'4.2.3': true,
'4.2.0': true,
Expand Down
Loading

0 comments on commit 1623cfe

Please sign in to comment.