Skip to content

Commit

Permalink
Updated version in files to 0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasrw committed Mar 4, 2016
1 parent 401b049 commit 575f593
Show file tree
Hide file tree
Showing 10 changed files with 41 additions and 36 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Changelog
* Check https://trello.com/b/qxz65pVi/alasql-roadmap for roadmap

### _0.2.4 "Exogi" (xx.xx.2016)_

### 0.2.5 "......" (xx.04.2016)
* ...
* ...


### 0.2.4 "Exogi" (04.03.2016)
* Added: Central enviroment detection
* Added: SELECT * FROM ? GROUP BY a works as FIRST(*)
* Added: Better detection for browserify, phonegap and cordova
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@
"bin",
"lib"
],
"version": "0.2.3"
"version": "0.2.4"
}
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.2.3-develop-1206 | © 2014-2016 Andrey Gershun & Mathias Rangel Wulff | License: MIT
//! AlaSQL v0.2.4 | © 2014-2016 Andrey Gershun & Mathias Rangel Wulff | License: MIT
/*
@module alasql
@version 0.2.3-develop-1206
@version 0.2.4
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.js
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! AlaSQL v0.2.3-develop-1206 | © 2014-2016 Andrey Gershun & Mathias Rangel Wulff | License: MIT
//! AlaSQL v0.2.4 | © 2014-2016 Andrey Gershun & Mathias Rangel Wulff | License: MIT
/*
@module alasql
@version 0.2.3-develop-1206
@version 0.2.4

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

/**
Debug flag
Expand Down Expand Up @@ -10146,7 +10146,7 @@ stdlib.ABS = function(a) {return 'Math.abs('+a+')'};
stdlib.CLONEDEEP = function(a) {return 'alasql.utils.cloneDeep('+a+')'};

stdfn.CONCAT = function(){
return Array.prototype.slice.call(arguments).join(' ');
return Array.prototype.slice.call(arguments).join('');
};
stdlib.EXP = function(a) {return 'Math.pow(Math.E,'+a+')'};

Expand Down
20 changes: 10 additions & 10 deletions dist/alasql.min.js
100755 → 100644

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "alasql",
"description": "Versatile SQL database for browser or node. Handles relational data and nested JSON (noSQL). Export to and import from Excel, localStorage or IndexedDB",
"version": "0.2.3",
"version": "0.2.4",
"author": "Andrey Gershun <[email protected]>",
"contributors": [
{
Expand All @@ -27,29 +27,29 @@
},
"dependencies": {
"dom-storage": "^2.0.1",
"es6-promise": "^3.0.2",
"lodash": "^4.0.0",
"es6-promise": "^3.1.2",
"lodash": "^4.6.1",
"request": "^2.69.0",
"xlsjs": "^0.7.5",
"xlsx": "^0.8.0",
"request": "^2.67.0"
"xlsx": "^0.8.0"
},
"devDependencies": {
"blueimp-md5": "^2.1.0",
"gulp": "^3.9.0",
"blueimp-md5": "^2.3.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-dereserve": "^0.2.1",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-shell": "^0.5.0",
"gulp-uglify": "^1.4.1",
"jison": "^0.4.15",
"mocha": "^2.3.0",
"gulp-shell": "^0.5.2",
"gulp-uglify": "^1.5.3",
"jison": "^0.4.17",
"mocha": "^2.4.5",
"mversion": "^1.10.0",
"npm-check": "^4.0.1",
"open": "0.0.5",
"strftime": "^0.9.2",
"uglifyjs": "^2.4.10",
"yargs": "^3.31.0"
"yargs": "^4.2.0"
},
"engines": [
"node"
Expand Down
4 changes: 2 additions & 2 deletions partners/meteor/.versions
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
agershun:[email protected].3
local-test:agershun:[email protected].3
agershun:[email protected].4
local-test:agershun:[email protected].4
[email protected]
[email protected]
2 changes: 1 addition & 1 deletion partners/meteor/package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'agershun:alasql',
version: '0.2.3',
version: '0.2.4',
// Brief, one-line summary of the package.
summary: 'AlaSQL - JavaScript SQL database library',
// URL to the Git repository containing the source code for this package.
Expand Down
2 changes: 1 addition & 1 deletion test/test429.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"Atlas": "{\"databaseid\":\"Atlas\",\"tables\":{\"transactions\":true}}",
"Atlas.transactions": "{\"columns\":[{\"columnid\":\"transid\",\"dbtypeid\":\"\"},{\"columnid\":\"payee\",\"dbtypeid\":\"\"},{\"columnid\":\"amount\",\"dbtypeid\":\"\"}],\"data\":[],\"identities\":{}}",
"test": "{\"databaseid\":\"test\",\"tables\":{\"one\":true}}",
"test.one": "{\"columns\":[{\"columnid\":\"a\",\"dbtypeid\":\"INT\",\"identity\":{\"value\":1,\"step\":1}},{\"columnid\":\"b\",\"dbtypeid\":\"STRING\"}],\"data\":[{\"b\":\"one\"},{\"b\":\"two\"},{\"b\":\"three\"},{\"b\":\"four\"},{\"b\":\"one\"},{\"b\":\"two\"},{\"b\":\"three\"},{\"b\":\"four\"}],\"identities\":{\"a\":{\"value\":1,\"step\":1}}}",
"test.one": "{\"columns\":[{\"columnid\":\"a\",\"dbtypeid\":\"INT\",\"identity\":{\"value\":1,\"step\":1}},{\"columnid\":\"b\",\"dbtypeid\":\"STRING\"}],\"data\":[{\"b\":\"one\"},{\"b\":\"two\"},{\"b\":\"three\"},{\"b\":\"four\"},{\"b\":\"one\"},{\"b\":\"two\"},{\"b\":\"three\"},{\"b\":\"four\"},{\"b\":\"one\"},{\"b\":\"two\"},{\"b\":\"three\"},{\"b\":\"four\"},{\"b\":\"one\"},{\"b\":\"two\"},{\"b\":\"three\"},{\"b\":\"four\"}],\"identities\":{\"a\":{\"value\":1,\"step\":1}}}",
"ls379": "{\"databaseid\":\"ls379\",\"tables\":{\"one\":true}}",
"ls379.one": "{\"columns\":[{\"columnid\":\"a\",\"dbtypeid\":\"INT\"},{\"columnid\":\"b\",\"dbtypeid\":\"STRING\"}],\"data\":[],\"identities\":{}}"
}

0 comments on commit 575f593

Please sign in to comment.