Skip to content

Commit

Permalink
chore: v4.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
troch committed Apr 9, 2018
1 parent d6e6d27 commit bff09c7
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="4.0.4"></a>
## [4.0.4](https://github.com/troch/path-parser/compare/v4.0.3...v4.0.4) (2018-04-09)


### Bug Fixes

* match pipe characters in parameters (Firefox) ([d6e6d27](https://github.com/troch/path-parser/commit/d6e6d27))



<a name="4.0.3"></a>
## [4.0.3](https://github.com/troch/path-parser/compare/v4.0.2...v4.0.3) (2018-04-03)

Expand Down
2 changes: 1 addition & 1 deletion dist/cjs/path-parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var __assign = Object.assign || function __assign(t) {
};

var defaultOrConstrained = function (match) {
return '(' + (match ? match.replace(/(^<|>$)/g, '') : "[a-zA-Z0-9-_.~%':]+") + ')';
return '(' + (match ? match.replace(/(^<|>$)/g, '') : "[a-zA-Z0-9-_.~%':|]+") + ')';
};
var rules = [
{
Expand Down
2 changes: 1 addition & 1 deletion dist/es/path-parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var __assign = Object.assign || function __assign(t) {
};

var defaultOrConstrained = function (match) {
return '(' + (match ? match.replace(/(^<|>$)/g, '') : "[a-zA-Z0-9-_.~%':]+") + ')';
return '(' + (match ? match.replace(/(^<|>$)/g, '') : "[a-zA-Z0-9-_.~%':|]+") + ')';
};
var rules = [
{
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": "path-parser",
"version": "4.0.3",
"version": "4.0.4",
"description": "A small utility to parse, match and generate paths",
"main": "dist/cjs/path-parser.js",
"jsnext:main": "dist/es/path-parser.js",
Expand Down

0 comments on commit bff09c7

Please sign in to comment.