Skip to content

Commit c3342b5

Browse files
committed
Bump version to 4.4.0
1 parent 146f3b9 commit c3342b5

12 files changed

+8237
-11
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# XRegExp 4.3.1
1+
# XRegExp 4.4.0
22

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

package.json

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

src/addons/build.js

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

src/addons/matchrecursive.js

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

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.3.1
2+
* XRegExp Unicode Base 4.4.0
33
* <xregexp.com>
44
* Steven Levithan (c) 2008-present MIT License
55
*/

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.3.1
2+
* XRegExp Unicode Blocks 4.4.0
33
* <xregexp.com>
44
* Steven Levithan (c) 2010-present MIT License
55
* Unicode data by Mathias Bynens <mathiasbynens.be>

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.3.1
2+
* XRegExp Unicode Categories 4.4.0
33
* <xregexp.com>
44
* Steven Levithan (c) 2010-present MIT License
55
* Unicode data by Mathias Bynens <mathiasbynens.be>

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.3.1
2+
* XRegExp Unicode Properties 4.4.0
33
* <xregexp.com>
44
* Steven Levithan (c) 2012-present MIT License
55
* Unicode data by Mathias Bynens <mathiasbynens.be>

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.3.1
2+
* XRegExp Unicode Scripts 4.4.0
33
* <xregexp.com>
44
* Steven Levithan (c) 2010-present MIT License
55
* Unicode data by Mathias Bynens <mathiasbynens.be>

src/xregexp.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* XRegExp 4.3.1
2+
* XRegExp 4.4.0
33
* <xregexp.com>
44
* Steven Levithan (c) 2007-present MIT License
55
*/
@@ -659,7 +659,7 @@ XRegExp.prototype = new RegExp();
659659
* @memberOf XRegExp
660660
* @type String
661661
*/
662-
XRegExp.version = '4.3.1';
662+
XRegExp.version = '4.4.0';
663663

664664
// ==--------------------------==
665665
// Public methods

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.4.0': true,
2728
'4.3.1': true,
2829
'4.2.4': true,
2930
'4.2.3': true,

0 commit comments

Comments
 (0)