Skip to content

Commit

Permalink
Updated version in files to 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasrw committed Feb 1, 2016
1 parent 132968a commit 61ad391
Show file tree
Hide file tree
Showing 11 changed files with 4,200 additions and 4,186 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Changelog
* Check https://trello.com/b/qxz65pVi/alasql-roadmap for roadmap

### 0.2.4 "Exogi" (xx.xx.2016)
* ...

### 0.2.3-pre "Spetses" (xx.xx.2016)
### 0.2.3 "Spetses" (02.01.2016)
* Changed: New fast way to calculate aggregators (some parameters changed)
* Added: User defined aggregators
* Fixed: Remove empty Last line in TXT and XLSX
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -466,25 +466,25 @@ You can use JSON objects in your databases (do not forget use == and !== operato
```sql
alasql> SELECT VALUE {a:'1',b:'2'}
alasql> SELECT VALUE @{a:'1',b:'2'}
{a:1,b:2}
alasql> SELECT VALUE {a:'1',b:'2'} == {a:'1',b:'2'}
alasql> SELECT VALUE @{a:'1',b:'2'} == @{a:'1',b:'2'}
true
alasql> SELECT VALUE {a:'1',b:'2'}->b
alasql> SELECT VALUE @{a:'1',b:'2'}->b
2
alasql> SELECT VALUE {a:'1',b:(2*2)}->b
alasql> SELECT VALUE @{a:'1',b:(2*2)}->b
4
```
Try AlaSQL JSON objects in Console [sample](http://alasql.org/console?drop table if exists one;create table one;insert into one values {a:@[1,2,3],c:{e:23}}, {a:@[{b:@[1,2,3]}]};select * from one)
Try AlaSQL JSON objects in Console [sample](http://alasql.org/console?drop table if exists one;create table one;insert into one values @{a:@[1,2,3],c:{e:23}}, @{a:@[{b:@[1,2,3]}]};select * from one)
Expand Down Expand Up @@ -535,7 +535,7 @@ Please be aware that AlaSQL ~~may~~ have [bugs](https://github.com/agershun/alas
0. Limited functionality for transactions (supports only for localStorage) - Sorry, transactions are limited, because AlaSQL started to use more complex approach for PRIMARY KEYS / FOREIGN KEYS. Transactions will be fully turned on again in future version.
0. A `(FULL) OUTER JOIN` and `RIGHT JOIM` on more than 2 tables will not give the expected results. `INNER JOIN` and `LEFT JOIN` are ok.
0. A `(FULL) OUTER JOIN` on more than 2 tables will not give the expected results
Probably, there are many of others. Please, help us to fix them by [submitting it as an issue](https://github.com/agershun/alasql/issues). Thank you!
Expand Down Expand Up @@ -609,4 +609,4 @@ and other people for useful tools, which make our work much easier.
----
© 2014-2015, Andrey Gershun ([email protected]) & M. Rangel Wulff ([email protected])
© 2014-2015, Andrey Gershun ([email protected]) & M. Rangel Wulff ([email protected])
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.2"
"version": "0.2.3"
}
4 changes: 2 additions & 2 deletions dist/alasql-worker.js
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*! AlaSQL v0.2.2-develop-1153 © 2014-2015 Andrey Gershun & M. Rangel Wulff | alasql.org/license */
/*! AlaSQL v0.2.3-develop-1164 © 2014-2015 Andrey Gershun & M. Rangel Wulff | alasql.org/license */
/*
@module alasql
@version 0.2.2-develop-1153
@version 0.2.3-develop-1164
AlaSQL - JavaScript SQL database
© 2014-2015 Andrey Gershun & M. Rangel Wulff
Expand Down
Empty file modified dist/alasql-worker.min.js
100644 → 100755
Empty file.
Loading

0 comments on commit 61ad391

Please sign in to comment.