Skip to content

Commit

Permalink
push v1.1.1 to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-coleman committed Feb 24, 2017
1 parent b159c2e commit 7b389bb
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
#### 1.1.1 Maintenance Release

- fix chaining operator for falsy inputs
- fix tokenizer regression for name tokens that start with "in" and "or"
- Make minified version appear in npm
- Enforce eqeqeq rule in JSONata (#41)
- fix regression: some instances of divide token were incorrectly parsed as start of regex


#### 1.1.0 Milestone Release

- New syntax to create regular expressions
Expand Down
2 changes: 0 additions & 2 deletions jsonata.js
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,6 @@ var jsonata = (function() {
suppliedSig += getSymbol(arg);
});
var isValid = regex.exec(suppliedSig);
// console.log(isValid, params);
if(isValid) {
var validatedArgs = [];
var argIndex = 0;
Expand Down Expand Up @@ -2308,7 +2307,6 @@ var jsonata = (function() {
return args;
}
var validatedArgs = signature.validate(args, context);
// console.log(args, validatedArgs);
return validatedArgs;
}

Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"name": "jsonata",
"version": "1.1.0",
"version": "1.1.1",
"description": "JSON query and transformation language",
"main": "jsonata.js",
"homepage": "http://jsonata.org/",
"repository": {
"type": "git",
"url": "https://github.com/jsonata-js/jsonata.git"
Expand Down

0 comments on commit 7b389bb

Please sign in to comment.