Create client release 0.30.1

This commit is contained in:
Jesús Arroyo Torrens 2021-03-05 17:12:34 +01:00
parent aac1efaeac
commit 4acf5f9eef
8 changed files with 5864 additions and 1 deletions

View File

@ -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

View File

@ -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

View 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'
);

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff