Skip to content

Commit

Permalink
Release v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafa de la Torre committed Feb 20, 2018
1 parent 49f6576 commit e911da7
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 179 deletions.
10 changes: 3 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,9 @@ MODULE_big = odbc_fdw
OBJS = odbc_fdw.o

EXTENSION = odbc_fdw
DATA = odbc_fdw--0.0.1.sql \
odbc_fdw--0.1.0.sql \
odbc_fdw--0.2.0.sql \
odbc_fdw--0.0.1--0.1.0.sql \
odbc_fdw--0.1.0--0.0.1.sql \
odbc_fdw--0.1.0--0.2.0.sql \
odbc_fdw--0.2.0--0.1.0.sql
DATA = odbc_fdw--0.3.0.sql \
odbc_fdw--0.2.0--0.3.0.sql \
odbc_fdw--0.3.0--0.2.0.sql

TEST_DIR = test/
REGRESS = $(notdir $(basename $(sort $(wildcard $(TEST_DIR)/sql/*test.sql))))
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Changelog

## 0.3.0
Released yyyy-mm-dd
Released 2018-02-20

Bug fixes:
- Fixed issues with travis builds
Expand Down
30 changes: 0 additions & 30 deletions odbc_fdw--0.0.1.sql

This file was deleted.

44 changes: 0 additions & 44 deletions odbc_fdw--0.1.0--0.2.0.sql

This file was deleted.

30 changes: 0 additions & 30 deletions odbc_fdw--0.1.0.sql

This file was deleted.

36 changes: 0 additions & 36 deletions odbc_fdw--0.2.0--0.1.0.sql

This file was deleted.

16 changes: 2 additions & 14 deletions odbc_fdw--0.0.1--0.1.0.sql → odbc_fdw--0.2.0--0.3.0.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* foreign-data wrapper for ODBC
*
* Copyright (c) 2011, PostgreSQL Global Development Group
* Copyright (c) 2016, CARTO
* Copyright (c) 2016, 2017, 2018, CARTO
*
* This software is released under the PostgreSQL Licence
*
Expand All @@ -12,16 +12,4 @@
*-------------------------------------------------------------------------
*/

CREATE OR REPLACE FUNCTION odbc_fdw_handler()
RETURNS fdw_handler
AS 'MODULE_PATHNAME'
LANGUAGE C STRICT;

CREATE OR REPLACE FUNCTION odbc_fdw_validator(text[], oid)
RETURNS void
AS 'MODULE_PATHNAME'
LANGUAGE C STRICT;

ALTER FOREIGN DATA WRAPPER odbc_fdw
HANDLER odbc_fdw_handler
VALIDATOR odbc_fdw_validator;
-- Empty file as there are no changes in API between 0.2.0 and 0.3.0
16 changes: 2 additions & 14 deletions odbc_fdw--0.1.0--0.0.1.sql → odbc_fdw--0.3.0--0.2.0.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* foreign-data wrapper for ODBC
*
* Copyright (c) 2011, PostgreSQL Global Development Group
* Copyright (c) 2016, CARTO
* Copyright (c) 2016, 2017, 2018, CARTO
*
* This software is released under the PostgreSQL Licence
*
Expand All @@ -12,16 +12,4 @@
*-------------------------------------------------------------------------
*/

CREATE OR REPLACE FUNCTION odbc_fdw_handler()
RETURNS fdw_handler
AS 'MODULE_PATHNAME'
LANGUAGE C STRICT;

CREATE OR REPLACE FUNCTION odbc_fdw_validator(text[], oid)
RETURNS void
AS 'MODULE_PATHNAME'
LANGUAGE C STRICT;

ALTER FOREIGN DATA WRAPPER odbc_fdw
HANDLER odbc_fdw_handler
VALIDATOR odbc_fdw_validator;
-- Empty file as there are no changes in API between 0.2.0 and 0.3.0
2 changes: 1 addition & 1 deletion odbc_fdw--0.2.0.sql → odbc_fdw--0.3.0.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* foreign-data wrapper for ODBC
*
* Copyright (c) 2011, PostgreSQL Global Development Group
* Copyright (c) 2016, CARTO
* Copyright (c) 2016, 2017, 2018, CARTO
*
* This software is released under the PostgreSQL Licence
*
Expand Down
5 changes: 3 additions & 2 deletions odbc_fdw.control
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,18 @@
# foreign-data wrapper for ODBC
#
# Copyright (c) 2011, PostgreSQL Global Development Group
# Copyright (c) 2016, 2017, 2018, CARTO
#
# This software is released under the PostgreSQL Licence
#
# Author: Zheng Yang <[email protected]>
# Original author: Zheng Yang <[email protected]>
#
# IDENTIFICATION
# odbc_fdw/odbc_fdw.control
#
##########################################################################

comment = 'Foreign data wrapper for accessing remote databases using ODBC'
default_version = '0.2.0'
default_version = '0.3.0'
module_pathname = '$libdir/odbc_fdw'
relocatable = true

0 comments on commit e911da7

Please sign in to comment.