Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v4.3.0 #283

Merged
merged 1 commit into from
Feb 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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