Skip to content

Commit 2cb340a

Browse files
committed
Release v4.2.4
1 parent 4063d27 commit 2cb340a

13 files changed

+5921
-26
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# XRegExp 4.2.3
1+
# XRegExp 4.2.4
22

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

Diff for: package-lock.json

+39-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "xregexp",
3-
"version": "4.2.3",
3+
"version": "4.2.4",
44
"description": "Extended regular expressions",
55
"homepage": "http://xregexp.com/",
66
"author": "Steven Levithan <[email protected]>",

Diff for: src/addons/build.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* XRegExp.build 4.2.3
2+
* XRegExp.build 4.2.4
33
* <xregexp.com>
44
* Steven Levithan (c) 2012-present MIT License
55
*/

Diff for: src/addons/matchrecursive.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* XRegExp.matchRecursive 4.2.3
2+
* XRegExp.matchRecursive 4.2.4
33
* <xregexp.com>
44
* Steven Levithan (c) 2009-present MIT License
55
*/

Diff for: src/addons/unicode-base.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* XRegExp Unicode Base 4.2.3
2+
* XRegExp Unicode Base 4.2.4
33
* <xregexp.com>
44
* Steven Levithan (c) 2008-present MIT License
55
*/

Diff for: src/addons/unicode-blocks.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* XRegExp Unicode Blocks 4.2.3
2+
* XRegExp Unicode Blocks 4.2.4
33
* <xregexp.com>
44
* Steven Levithan (c) 2010-present MIT License
55
* Unicode data by Mathias Bynens <mathiasbynens.be>

Diff for: src/addons/unicode-categories.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* XRegExp Unicode Categories 4.2.3
2+
* XRegExp Unicode Categories 4.2.4
33
* <xregexp.com>
44
* Steven Levithan (c) 2010-present MIT License
55
* Unicode data by Mathias Bynens <mathiasbynens.be>

Diff for: src/addons/unicode-properties.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* XRegExp Unicode Properties 4.2.3
2+
* XRegExp Unicode Properties 4.2.4
33
* <xregexp.com>
44
* Steven Levithan (c) 2012-present MIT License
55
* Unicode data by Mathias Bynens <mathiasbynens.be>

Diff for: src/addons/unicode-scripts.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* XRegExp Unicode Scripts 4.2.3
2+
* XRegExp Unicode Scripts 4.2.4
33
* <xregexp.com>
44
* Steven Levithan (c) 2010-present MIT License
55
* Unicode data by Mathias Bynens <mathiasbynens.be>

Diff for: src/xregexp.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* XRegExp 4.2.3
2+
* XRegExp 4.2.4
33
* <xregexp.com>
44
* Steven Levithan (c) 2007-present MIT License
55
*/
@@ -649,7 +649,7 @@ XRegExp.prototype = new RegExp();
649649
* @memberOf XRegExp
650650
* @type String
651651
*/
652-
XRegExp.version = '4.2.3';
652+
XRegExp.version = '4.2.4';
653653

654654
// ==--------------------------==
655655
// Public methods

Diff for: tests/perf/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
var match = /[?&]version=([^&]+)/.exec(location.search);
2525
var version = match ? match[1] : null;
2626
var knownVersion = {
27+
'4.2.4': true,
2728
'4.2.3': true,
2829
'4.2.0': true,
2930
'4.1.1': true,

0 commit comments

Comments
 (0)