Version updated to 0.9.0 plus release notes

This commit is contained in:
Rafa de la Torre 2015-08-19 15:08:07 +02:00
parent 805af3babf
commit f71a2ac52e
2 changed files with 19 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# cartodb/Makefile
EXTENSION = cartodb
EXTVERSION = 0.8.2
EXTVERSION = 0.9.0
SED = sed
@ -41,6 +41,8 @@ UPGRADABLE = \
0.7.4 \
0.8.0 \
0.8.1 \
0.8.2 \
0.9.0 \
$(EXTVERSION)dev \
$(EXTVERSION)next \
$(END)

17
NEWS.md
View File

@ -1,4 +1,19 @@
0.8.3 (2015-mm-dd)
0.9.0 (2015-08-19)
------------------
* Re-implementation of `CDB_CartodbfyTable` functions
- The signature of the main function changes to
```
FUNCTION CDB_CartodbfyTable(destschema TEXT, reloid REGCLASS)
RETURNS REGCLASS
```
- The `destschema` does not need to match the origin schema of `reloid`
- It returns the `regclass` of the cartodbfy'ed table, if it needs to be rewritten.
- There are many optimizations
- The columns `created_at` and `updated_at` will no longer be added
* Fix for CDB_UserDataSize failing due `ERROR: relation "*" does not exist.` #110
* Review test to validate permissions in public tables [#112](https://github.com/CartoDB/cartodb-postgresql/pull/112)
0.8.3 (2015-08-14)
------------------
* Fixes CDB_UserDataSize failing due `ERROR: relation "*" does not exist.` [#108](https://github.com/CartoDB/cartodb-postgresql/issues/108)