Create client release 0.30.1
This commit is contained in:
parent
aac1efaeac
commit
4acf5f9eef
1
NEWS.md
1
NEWS.md
@ -1,5 +1,6 @@
|
|||||||
Mar 4th, 2021
|
Mar 4th, 2021
|
||||||
=============
|
=============
|
||||||
|
* Version `0.30.1` of the client extension
|
||||||
* Version `0.39.4` of the server extension
|
* Version `0.39.4` of the server extension
|
||||||
* Version `0.23.6` of the Python library
|
* Version `0.23.6` of the Python library
|
||||||
* Remove Data Observatory
|
* Remove Data Observatory
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# Makefile to generate the extension out of separate sql source files.
|
# Makefile to generate the extension out of separate sql source files.
|
||||||
# Once a version is released, it is not meant to be changed. E.g: once version 0.0.1 is out, it SHALL NOT be changed.
|
# Once a version is released, it is not meant to be changed. E.g: once version 0.0.1 is out, it SHALL NOT be changed.
|
||||||
EXTENSION = cdb_dataservices_client
|
EXTENSION = cdb_dataservices_client
|
||||||
EXTVERSION = 0.30.0
|
EXTVERSION = 0.30.1
|
||||||
|
|
||||||
# The new version to be generated from templates
|
# The new version to be generated from templates
|
||||||
SED ?= sed
|
SED ?= sed
|
||||||
|
24
client/cdb_dataservices_client--0.30.0--0.30.1.sql
Normal file
24
client/cdb_dataservices_client--0.30.0--0.30.1.sql
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
--DO NOT MODIFY THIS FILE, IT IS GENERATED AUTOMATICALLY FROM SOURCES
|
||||||
|
-- Complain if script is sourced in psql, rather than via CREATE EXTENSION
|
||||||
|
\echo Use "ALTER EXTENSION cdb_dataservices_client UPDATE TO '0.30.1'" to load this file. \quit
|
||||||
|
|
||||||
|
-- Make sure we have a sane search path to create/update the extension
|
||||||
|
SET search_path = "$user",cartodb,public,cdb_dataservices_client;
|
||||||
|
|
||||||
|
-- HERE goes your code to upgrade/downgrade
|
||||||
|
|
||||||
|
-- DROP FUNCTION IF EXISTS TODO
|
||||||
|
|
||||||
|
DROP TYPE IF EXISTS cdb_dataservices_client.obs_meta_numerator;
|
||||||
|
DROP TYPE IF EXISTS cdb_dataservices_client.obs_meta_denominator;
|
||||||
|
DROP TYPE IF EXISTS cdb_dataservices_client.obs_meta_geometry;
|
||||||
|
DROP TYPE IF EXISTS cdb_dataservices_client.obs_meta_timespan;
|
||||||
|
DROP TYPE IF EXISTS cdb_dataservices_client.ds_fdw_metadata;
|
||||||
|
DROP TYPE IF EXISTS cdb_dataservices_client.ds_return_metadata;
|
||||||
|
|
||||||
|
DROP TYPE IF EXISTS cdb_dataservices_client.service_type;
|
||||||
|
CREATE TYPE cdb_dataservices_client.service_type AS ENUM (
|
||||||
|
'isolines',
|
||||||
|
'hires_geocoder',
|
||||||
|
'routing'
|
||||||
|
);
|
2761
client/cdb_dataservices_client--0.30.1--0.30.0.sql
Normal file
2761
client/cdb_dataservices_client--0.30.1--0.30.0.sql
Normal file
File diff suppressed because it is too large
Load Diff
3077
client/cdb_dataservices_client--0.30.1.sql
Normal file
3077
client/cdb_dataservices_client--0.30.1.sql
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user