Skip to content

Commit

Permalink
Bump version to 4.4.1 (#312)
Browse files Browse the repository at this point in the history
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`.
  • Loading branch information
josephfrazier committed Dec 8, 2020
1 parent 4a493a0 commit 1e8e3fa
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
# XRegExp 4.4.0
# XRegExp 4.4.1

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

Expand Down
4 changes: 2 additions & 2 deletions 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
@@ -1,6 +1,6 @@
{
"name": "xregexp",
"version": "4.4.0",
"version": "4.4.1",
"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
@@ -1,5 +1,5 @@
/*!
* XRegExp.build 4.4.0
* XRegExp.build 4.4.1
* <xregexp.com>
* Steven Levithan (c) 2012-present MIT License
*/
Expand Down
2 changes: 1 addition & 1 deletion src/addons/matchrecursive.js
@@ -1,5 +1,5 @@
/*!
* XRegExp.matchRecursive 4.4.0
* XRegExp.matchRecursive 4.4.1
* <xregexp.com>
* Steven Levithan (c) 2009-present MIT License
*/
Expand Down
2 changes: 1 addition & 1 deletion src/addons/unicode-base.js
@@ -1,5 +1,5 @@
/*!
* XRegExp Unicode Base 4.4.0
* XRegExp Unicode Base 4.4.1
* <xregexp.com>
* Steven Levithan (c) 2008-present MIT License
*/
Expand Down
2 changes: 1 addition & 1 deletion src/addons/unicode-blocks.js
@@ -1,5 +1,5 @@
/*!
* XRegExp Unicode Blocks 4.4.0
* XRegExp Unicode Blocks 4.4.1
* <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
@@ -1,5 +1,5 @@
/*!
* XRegExp Unicode Categories 4.4.0
* XRegExp Unicode Categories 4.4.1
* <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
@@ -1,5 +1,5 @@
/*!
* XRegExp Unicode Properties 4.4.0
* XRegExp Unicode Properties 4.4.1
* <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
@@ -1,5 +1,5 @@
/*!
* XRegExp Unicode Scripts 4.4.0
* XRegExp Unicode Scripts 4.4.1
* <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
@@ -1,5 +1,5 @@
/*!
* XRegExp 4.4.0
* XRegExp 4.4.1
* <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.4.0';
XRegExp.version = '4.4.1';

// ==--------------------------==
// Public methods
Expand Down

0 comments on commit 1e8e3fa

Please sign in to comment.