Skip to content

Commit 945d1e8

Browse files
committed
Prepare next release 0.5.1
1 parent c4963c8 commit 945d1e8

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,12 @@ MODULE_big = odbc_fdw
1818
OBJS = odbc_fdw.o
1919

2020
EXTENSION = odbc_fdw
21-
DATA = odbc_fdw--0.5.0.sql \
21+
DATA = odbc_fdw--0.5.1.sql \
2222
odbc_fdw--0.2.0--0.3.0.sql \
2323
odbc_fdw--0.2.0--0.4.0.sql \
2424
odbc_fdw--0.3.0--0.4.0.sql \
25-
odbc_fdw--0.4.0--0.5.0.sql
25+
odbc_fdw--0.4.0--0.5.0.sql \
26+
odbc_fdw--0.5.0--0.5.1.sql
2627

2728
TEST_DIR = test/
2829
REGRESS = $(notdir $(basename $(sort $(wildcard $(TEST_DIR)/sql/*test.sql))))

odbc_fdw--0.5.0--0.5.1.sql

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* foreign-data wrapper for ODBC
4+
*
5+
* Copyright (c) 2011, PostgreSQL Global Development Group
6+
* Copyright (c) 2016-2020 CARTO
7+
*
8+
* This software is released under the PostgreSQL Licence
9+
*
10+
* Original author: Zheng Yang <[email protected]>
11+
*
12+
*-------------------------------------------------------------------------
13+
*/
14+
15+
-- Empty file as there are no changes in API between 0.5.0 and 0.5.1
File renamed without changes.

odbc_fdw.control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
##########################################################################
1616

1717
comment = 'Foreign data wrapper for accessing remote databases using ODBC'
18-
default_version = '0.5.0'
18+
default_version = '0.5.1'
1919
module_pathname = '$libdir/odbc_fdw'
2020
relocatable = true

0 commit comments

Comments
 (0)