Skip to content

Commit 1e8e3fa

Browse files
Bump version to 4.4.1 (#312)
Changes include: * Add browser field to package.json to fix webpack: #308 To generate this commit, I adapted the steps at #205 (comment) > Here's a fuller list of changes that can be needed with new releases: > > * Version number > * Update version number and year in headers, config files, README. > * Update year in LICENSE. > * Update version number in `XRegExp.version`. > * Publish > * Publish new git tag. E.g.: > * `git tag -a v3.1.0 -m "Release 3.1.0"`. > * `git push origin v3.1.0`. > * `npm publish`.
1 parent 4a493a0 commit 1e8e3fa

11 files changed

+13
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# XRegExp 4.4.0
1+
# XRegExp 4.4.1
22

33
[![Build Status](https://github.com/slevithan/xregexp/workflows/Node.js%20CI/badge.svg)](https://github.com/slevithan/xregexp/actions)
44

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

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

src/addons/build.js

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

src/addons/matchrecursive.js

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

src/addons/unicode-base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* XRegExp Unicode Base 4.4.0
2+
* XRegExp Unicode Base 4.4.1
33
* <xregexp.com>
44
* Steven Levithan (c) 2008-present MIT License
55
*/

src/addons/unicode-blocks.js

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

src/addons/unicode-categories.js

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

src/addons/unicode-properties.js

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

src/addons/unicode-scripts.js

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

src/xregexp.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* XRegExp 4.4.0
2+
* XRegExp 4.4.1
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.4.0';
662+
XRegExp.version = '4.4.1';
663663

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

0 commit comments

Comments
 (0)