Skip to content

Commit

Permalink
Bump version to 4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
slevithan committed Oct 29, 2020
1 parent 146f3b9 commit c3342b5
Show file tree
Hide file tree
Showing 12 changed files with 8,237 additions and 11 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.3.1
# XRegExp 4.4.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.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "xregexp",
"version": "4.3.1",
"version": "4.4.0",
"description": "Extended regular expressions",
"homepage": "http://xregexp.com/",
"author": "Steven Levithan <[email protected]>",
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.3.1
* XRegExp.build 4.4.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.3.1
* XRegExp.matchRecursive 4.4.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.3.1
* XRegExp Unicode Base 4.4.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.3.1
* XRegExp Unicode Blocks 4.4.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.3.1
* XRegExp Unicode Categories 4.4.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.3.1
* XRegExp Unicode Properties 4.4.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.3.1
* XRegExp Unicode Scripts 4.4.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.3.1
* XRegExp 4.4.0
* <xregexp.com>
* Steven Levithan (c) 2007-present MIT License
*/
Expand Down Expand Up @@ -659,7 +659,7 @@ XRegExp.prototype = new RegExp();
* @memberOf XRegExp
* @type String
*/
XRegExp.version = '4.3.1';
XRegExp.version = '4.4.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.4.0': true,
'4.3.1': true,
'4.2.4': true,
'4.2.3': true,
Expand Down
Loading

0 comments on commit c3342b5

Please sign in to comment.