Skip to content

Commit 61ad391

Browse files
committed
Updated version in files to 0.2.3
1 parent 132968a commit 61ad391

File tree

11 files changed

+4200
-4186
lines changed

11 files changed

+4200
-4186
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Changelog
22
* Check https://trello.com/b/qxz65pVi/alasql-roadmap for roadmap
3+
4+
### 0.2.4 "Exogi" (xx.xx.2016)
5+
* ...
36

4-
### 0.2.3-pre "Spetses" (xx.xx.2016)
7+
### 0.2.3 "Spetses" (02.01.2016)
58
* Changed: New fast way to calculate aggregators (some parameters changed)
69
* Added: User defined aggregators
710
* Fixed: Remove empty Last line in TXT and XLSX

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -466,25 +466,25 @@ You can use JSON objects in your databases (do not forget use == and !== operato
466466
467467
```sql
468468
469-
alasql> SELECT VALUE {a:'1',b:'2'}
469+
alasql> SELECT VALUE @{a:'1',b:'2'}
470470
471471
{a:1,b:2}
472472
473-
alasql> SELECT VALUE {a:'1',b:'2'} == {a:'1',b:'2'}
473+
alasql> SELECT VALUE @{a:'1',b:'2'} == @{a:'1',b:'2'}
474474
475475
true
476476
477-
alasql> SELECT VALUE {a:'1',b:'2'}->b
477+
alasql> SELECT VALUE @{a:'1',b:'2'}->b
478478
479479
2
480480
481-
alasql> SELECT VALUE {a:'1',b:(2*2)}->b
481+
alasql> SELECT VALUE @{a:'1',b:(2*2)}->b
482482
483483
4
484484
485485
```
486486
487-
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)
487+
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)
488488
489489
490490
@@ -535,7 +535,7 @@ Please be aware that AlaSQL ~~may~~ have [bugs](https://github.com/agershun/alas
535535
536536
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.
537537
538-
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.
538+
0. A `(FULL) OUTER JOIN` on more than 2 tables will not give the expected results
539539
540540
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!
541541
@@ -609,4 +609,4 @@ and other people for useful tools, which make our work much easier.
609609
610610
----
611611
612-
© 2014-2015, Andrey Gershun ([email protected]) & M. Rangel Wulff ([email protected])
612+
© 2014-2015, Andrey Gershun ([email protected]) & M. Rangel Wulff ([email protected])

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@
5858
"bin",
5959
"lib"
6060
],
61-
"version": "0.2.2"
61+
"version": "0.2.3"
6262
}

dist/alasql-worker.js

100644100755
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
/*! AlaSQL v0.2.2-develop-1153 © 2014-2015 Andrey Gershun & M. Rangel Wulff | alasql.org/license */
1+
/*! AlaSQL v0.2.3-develop-1164 © 2014-2015 Andrey Gershun & M. Rangel Wulff | alasql.org/license */
22
/*
33
@module alasql
4-
@version 0.2.2-develop-1153
4+
@version 0.2.3-develop-1164
55
66
AlaSQL - JavaScript SQL database
77
© 2014-2015 Andrey Gershun & M. Rangel Wulff

dist/alasql-worker.min.js

100644100755
File mode changed.

0 commit comments

Comments
 (0)