diff --git a/Makefile b/Makefile index bd04084..f269c4f 100644 --- a/Makefile +++ b/Makefile @@ -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) diff --git a/NEWS.md b/NEWS.md index 6d68994..dbdcd76 100644 --- a/NEWS.md +++ b/NEWS.md @@ -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)