Skip to content

Commit

Permalink
Merge v0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasrw committed May 31, 2020
2 parents 51a1c42 + d40e199 commit 574956b
Show file tree
Hide file tree
Showing 16 changed files with 5,449 additions and 5,423 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog


### 0.6.2 (31.05.2020)


- Add: Use NOT BETWEEN without parenthesis.



### 0.6.1 (20.05.2020)

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@
"bin",
"lib"
],
"version": "0.6.1"
"version": "0.6.2"
}
4 changes: 2 additions & 2 deletions dist/alasql-worker.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! AlaSQL v0.6.1 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
//! AlaSQL v0.6.2 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
/*
@module alasql
@version 0.6.1
@version 0.6.2
AlaSQL - JavaScript SQL database
© 2014-2016 Andrey Gershun & Mathias Rangel Wulff
Expand Down
2 changes: 1 addition & 1 deletion dist/alasql-worker.min.js

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

8 changes: 4 additions & 4 deletions dist/alasql.fs.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! AlaSQL v0.6.1 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
//! AlaSQL v0.6.2 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
/*
@module alasql
@version 0.6.1
@version 0.6.2

AlaSQL - JavaScript SQL database
© 2014-2016 Andrey Gershun & Mathias Rangel Wulff
Expand Down Expand Up @@ -142,7 +142,7 @@ var alasql = function(sql, params, cb, scope) {
Current version of alasql
@constant {string}
*/
alasql.version = '0.6.1';
alasql.version = '0.6.2';

/**
Debug flag
Expand Down Expand Up @@ -10796,7 +10796,7 @@ yy.Op.prototype.toString = function() {

return s;
}
if (this.op === 'BETWEEN') {
if (this.op === 'BETWEEN' || this.op === 'NOT BETWEEN') {
var s = this.left.toString() + ' ' + this.op + ' '
+ this.right1.toString() + ' AND ' + this.right2.toString();

Expand Down
8 changes: 4 additions & 4 deletions dist/alasql.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! AlaSQL v0.6.1 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
//! AlaSQL v0.6.2 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
/*
@module alasql
@version 0.6.1
@version 0.6.2

AlaSQL - JavaScript SQL database
© 2014-2016 Andrey Gershun & Mathias Rangel Wulff
Expand Down Expand Up @@ -142,7 +142,7 @@ var alasql = function(sql, params, cb, scope) {
Current version of alasql
@constant {string}
*/
alasql.version = '0.6.1';
alasql.version = '0.6.2';

/**
Debug flag
Expand Down Expand Up @@ -10791,7 +10791,7 @@ yy.Op.prototype.toString = function() {

return s;
}
if (this.op === 'BETWEEN') {
if (this.op === 'BETWEEN' || this.op === 'NOT BETWEEN') {
var s = this.left.toString() + ' ' + this.op + ' '
+ this.right1.toString() + ' AND ' + this.right2.toString();

Expand Down
4 changes: 2 additions & 2 deletions dist/alasql.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "alasql",
"description": "Use SQL to select and filter javascript data - including relational joins and search in nested objects (JSON). Export to and import from Excel and CSV",
"version": "0.6.1",
"version": "0.6.2",
"author": "Andrey Gershun <agershun@gmail.com>",
"contributors": [
"Mathias Rangel Wulff <m@rawu.dk>"
Expand Down
2 changes: 1 addition & 1 deletion src/50expression.js
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ yy.Op.prototype.toString = function() {

return s;
}
if (this.op === 'BETWEEN') {
if (this.op === 'BETWEEN' || this.op === 'NOT BETWEEN') {
var s = this.left.toString() + ' ' + this.op + ' '
+ this.right1.toString() + ' AND ' + this.right2.toString();

Expand Down
2 changes: 1 addition & 1 deletion test/coverage/coverage.json

Large diffs are not rendered by default.

Loading

0 comments on commit 574956b

Please sign in to comment.