Skip to content

Commit

Permalink
New version: 1.21.3 (an empty string regression).
Browse files Browse the repository at this point in the history
  • Loading branch information
uhop committed Jun 13, 2024
1 parent 391af15 commit 7530962
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,7 @@ console.log('re2_res : ' + re2_res); // prints: re2_res : abc,a,b,c

## Release history

- 1.21.3 *Fixed an empty string regression reported by [Rhys Arkins](https://github.com/rarkins), thx! Updated deps.*
- 1.21.2 *Fixed another memory regression reported by [matthewvalentine](https://github.com/matthewvalentine), thx! Updated deps. Added more tests and benchmarks.*
- 1.21.1 *Fixed a memory regression reported by [matthewvalentine](https://github.com/matthewvalentine), thx! Updated deps.*
- 1.21.0 *Fixed the performance problem reported by [matthewvalentine](https://github.com/matthewvalentine) (thx!). The change improves performance for multiple use cases.*
Expand Down
13 changes: 7 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "re2",
"version": "1.21.2",
"version": "1.21.3",
"description": "Bindings for RE2: fast, safe alternative to backtracking regular expression engines.",
"homepage": "https://github.com/uhop/node-re2",
"bugs": "https://github.com/uhop/node-re2/issues",
Expand All @@ -16,7 +16,7 @@
],
"dependencies": {
"install-artifact-from-github": "^1.3.5",
"nan": "^2.19.0",
"nan": "^2.20.0",
"node-gyp": "^10.1.0"
},
"devDependencies": {
Expand All @@ -34,8 +34,8 @@
"build": "node-gyp -j max build",
"rebuild:dev": "node-gyp -j max rebuild --debug",
"rebuild": "node-gyp -j max rebuild",
"clean": "node-gyp clean",
"reconfigure": "node-gyp configure"
"clean": "node-gyp clean && node-gyp configure",
"clean-build": "node-gyp clean"
},
"github": "https://github.com/uhop/node-re2",
"repository": {
Expand Down

0 comments on commit 7530962

Please sign in to comment.