Skip to content

Commit

Permalink
Merge branch 'release/0.4.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasrw committed Sep 5, 2018
2 parents 2225381 + 657d963 commit 0b32530
Show file tree
Hide file tree
Showing 17 changed files with 4,077 additions and 4,038 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
# Changelog


> 0.4.11 "Lawdar" (xx.10.2018)
## 0.4.11 "Lawdar" (05.10.2018)

* Add: Specified XLSX sheet without knowing the name


## 0.4.10 "Maoshk" (04.10.2018)


Add: xlsxml files with multiple sheets
* Add: xlsxml files with multiple sheets


## 0.4.9 "Alsalfiah" (05.08.2018)
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.4.10"
"version": "0.4.11"
}
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.4.10 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
//! AlaSQL v0.4.11 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
/*
@module alasql
@version 0.4.10
@version 0.4.11
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: 5 additions & 3 deletions dist/alasql.fs.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! AlaSQL v0.4.10 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
//! AlaSQL v0.4.11 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
/*
@module alasql
@version 0.4.10
@version 0.4.11

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.4.10';
alasql.version = '0.4.11';

/**
Debug flag
Expand Down Expand Up @@ -17653,6 +17653,8 @@ function XLSXLSX(X, filename, opts, cb, idx, query) {
var sheetid;
if (typeof opt.sheetid === 'undefined') {
sheetid = workbook.SheetNames[0];
} else if (typeof opt.sheetid === 'number') {
sheetid = workbook.SheetNames[opt.sheetid];
} else {
sheetid = opt.sheetid;
}
Expand Down
8 changes: 5 additions & 3 deletions dist/alasql.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! AlaSQL v0.4.10 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
//! AlaSQL v0.4.11 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
/*
@module alasql
@version 0.4.10
@version 0.4.11

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.4.10';
alasql.version = '0.4.11';

/**
Debug flag
Expand Down Expand Up @@ -17648,6 +17648,8 @@ function XLSXLSX(X, filename, opts, cb, idx, query) {
var sheetid;
if (typeof opt.sheetid === 'undefined') {
sheetid = workbook.SheetNames[0];
} else if (typeof opt.sheetid === 'number') {
sheetid = workbook.SheetNames[opt.sheetid];
} else {
sheetid = opt.sheetid;
}
Expand Down
4 changes: 2 additions & 2 deletions dist/alasql.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit 0b32530

Please sign in to comment.