Bump version numbers

This commit is contained in:
Jesús Arroyo Torrens
2021-03-09 09:09:56 +01:00
parent df8a5492db
commit 05f7b237eb
10 changed files with 8 additions and 8 deletions
+3 -3
View File
@@ -1,8 +1,8 @@
Mar 4th, 2021 Mar 4th, 2021
============= =============
* Version `0.30.1` of the client extension * Version `0.31.0` of the client extension
* Version `0.39.4` of the server extension * Version `0.40.0` of the server extension
* Version `0.23.6` of the Python library * Version `0.24.0` of the Python library
* Remove Data Observatory * Remove Data Observatory
Jan 26th, 2021 Jan 26th, 2021
+1 -1
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.1 EXTVERSION = 0.31.0
# The new version to be generated from templates # The new version to be generated from templates
SED ?= sed SED ?= sed
@@ -1,6 +1,6 @@
--DO NOT MODIFY THIS FILE, IT IS GENERATED AUTOMATICALLY FROM SOURCES --DO NOT MODIFY THIS FILE, IT IS GENERATED AUTOMATICALLY FROM SOURCES
-- Complain if script is sourced in psql, rather than via CREATE EXTENSION -- 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 \echo Use "ALTER EXTENSION cdb_dataservices_client UPDATE TO '0.31.0'" to load this file. \quit
-- Make sure we have a sane search path to create/update the extension -- Make sure we have a sane search path to create/update the extension
SET search_path = "$user",cartodb,public,cdb_dataservices_client; SET search_path = "$user",cartodb,public,cdb_dataservices_client;
+1 -1
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_server EXTENSION = cdb_dataservices_server
EXTVERSION = 0.39.4 EXTVERSION = 0.40.0
# The new version to be generated from templates # The new version to be generated from templates
SED ?= sed SED ?= sed
@@ -1,6 +1,6 @@
--DO NOT MODIFY THIS FILE, IT IS GENERATED AUTOMATICALLY FROM SOURCES --DO NOT MODIFY THIS FILE, IT IS GENERATED AUTOMATICALLY FROM SOURCES
-- Complain if script is sourced in psql, rather than via CREATE EXTENSION -- Complain if script is sourced in psql, rather than via CREATE EXTENSION
\echo Use "ALTER EXTENSION cdb_dataservices_server UPDATE TO '0.39.4'" to load this file. \quit \echo Use "ALTER EXTENSION cdb_dataservices_server UPDATE TO '0.40.0'" to load this file. \quit
-- HERE goes your code to upgrade/downgrade -- HERE goes your code to upgrade/downgrade
+1 -1
View File
@@ -10,7 +10,7 @@ from setuptools import setup, find_packages
setup( setup(
name='cartodb_services', name='cartodb_services',
version='0.23.6', version='0.24.0',
description='CartoDB Services API Python Library', description='CartoDB Services API Python Library',