Skip to content

Commit

Permalink
Updated version in files to 0.4.9
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasrw committed Aug 5, 2018
1 parent 767ba0c commit 2459fe1
Show file tree
Hide file tree
Showing 14 changed files with 13,357 additions and 13,333 deletions.
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
# Changelog

> 0.4.11 "Lawdar" (xx.11.2018)
> 0.4.10 "Maoshk" (xx.10.2018)
> 0.4.9 "Alsalfiah" (xx.09.2018)
> 0.4.11 "Lawdar" (xx.10.2018)
> 0.4.10 "Maoshk" (xx.9.2018)

## 0.4.9 "Alsalfiah" (05.08.2018)

* Better: Error message grammar
* Better: Support for Meteor code standards
* Fix: dbprecision for select query
* Fix: Handle promise error when reading one line csv files
* Fix: AUTO_INCREMENT when using local storage

## 0.4.8 "Nafhan" (14.07.2018)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ console.log(res);
```

```js
// B) SQL on array of objects
// B) Select from array of objects
var data = [{a:1,b:10}, {a:2,b:20}, {a:1,b:30}];

var res = alasql('SELECT a, SUM(b) AS b FROM ? GROUP BY a',[data]);
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.8"
"version": "0.4.9"
}
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.8-develop-93f86514undefined | © 2014-2016 Andrey Gershun & Mathias Rangel Wulff | License: MIT
//! AlaSQL v0.4.9 | © 2014-2016 Andrey Gershun & Mathias Rangel Wulff | License: MIT
/*
@module alasql
@version 0.4.8-develop-93f86514undefined
@version 0.4.9
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.

6 changes: 3 additions & 3 deletions dist/alasql.fs.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! AlaSQL v0.4.8-develop-93f86514undefined | © 2014-2016 Andrey Gershun & Mathias Rangel Wulff | License: MIT
//! AlaSQL v0.4.9 | © 2014-2016 Andrey Gershun & Mathias Rangel Wulff | License: MIT
/*
@module alasql
@version 0.4.8-develop-93f86514undefined
@version 0.4.9

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.8-develop-93f86514undefined';
alasql.version = '0.4.9';

/**
Debug flag
Expand Down
6 changes: 3 additions & 3 deletions dist/alasql.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! AlaSQL v0.4.8-develop-93f86514undefined | © 2014-2016 Andrey Gershun & Mathias Rangel Wulff | License: MIT
//! AlaSQL v0.4.9 | © 2014-2016 Andrey Gershun & Mathias Rangel Wulff | License: MIT
/*
@module alasql
@version 0.4.8-develop-93f86514undefined
@version 0.4.9

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.8-develop-93f86514undefined';
alasql.version = '0.4.9';

/**
Debug flag
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.4.8",
"version": "0.4.9",
"author": "Andrey Gershun <[email protected]>",
"contributors": [
"Mathias Rangel Wulff <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion test/coverage/coverage.json

Large diffs are not rendered by default.

Loading

0 comments on commit 2459fe1

Please sign in to comment.