Skip to content

Commit

Permalink
Bump version number to 1.7 (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtuncer committed Feb 18, 2020
1 parent 1583a43 commit 5ba1178
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 8 deletions.
6 changes: 3 additions & 3 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"name": "cstore_fdw",
"abstract": "Columnar Store for PostgreSQL",
"description": "PostgreSQL extension which implements a Columnar Store.",
"version": "1.6.2",
"maintainer": "Murat Tuncer <mtuncer@citusdata.com>",
"version": "1.7.0",
"maintainer": "Murat Tuncer <murat.tuncer@microsoft.com>",
"license": "apache_2_0",
"provides": {
"cstore_fdw": {
"abstract": "Foreign Data Wrapper for Columnar Store Tables",
"file": "cstore_fdw--1.6.sql",
"file": "cstore_fdw--1.7.sql",
"docfile": "README.md",
"version": "1.6.2"
}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ OBJS = cstore.pb-c.o cstore_fdw.o cstore_writer.o cstore_reader.o \
cstore_metadata_serialization.o cstore_compression.o

EXTENSION = cstore_fdw
DATA = cstore_fdw--1.6.sql cstore_fdw--1.5--1.6.sql cstore_fdw--1.4--1.5.sql \
DATA = cstore_fdw--1.7.sql cstore_fdw--1.6--1.7.sql cstore_fdw--1.5--1.6.sql cstore_fdw--1.4--1.5.sql \
cstore_fdw--1.3--1.4.sql cstore_fdw--1.2--1.3.sql cstore_fdw--1.1--1.2.sql \
cstore_fdw--1.0--1.1.sql

Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ most efficient execution plan for each query.
commands. We also don't support single row inserts.


Updating from earlier versions to 1.6
Updating from earlier versions to 1.7
---------------------------------------

To update an existing cstore_fdw installation from versions earlier than 1.6
Expand Down Expand Up @@ -288,6 +288,12 @@ the installation:

Changeset
---------
### Version 1.7.0
* (Fix) Add support for PostgreSQL 12
* (Fix) Support count(t.*) from t type queries
* (Fix) Build failures for MacOS 10.14+
* (Fix) Make foreign scan parallel safe
* (Fix) Add support for PostgreSQL 11 COPY
### Version 1.6.2
* (Fix) Add support for PostgreSQL 11
### Version 1.6.1
Expand Down
3 changes: 3 additions & 0 deletions cstore_fdw--1.6--1.7.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/* cstore_fdw/cstore_fdw--1.6--1.6.sql */

-- No new functions or definitions were added in 1.7
2 changes: 1 addition & 1 deletion cstore_fdw--1.6.sql → cstore_fdw--1.7.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* cstore_fdw/cstore_fdw--1.6.sql */
/* cstore_fdw/cstore_fdw--1.7.sql */

-- complain if script is sourced in psql, rather than via CREATE EXTENSION
\echo Use "CREATE EXTENSION cstore_fdw" to load this file. \quit
Expand Down
2 changes: 1 addition & 1 deletion cstore_fdw.control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# cstore_fdw extension
comment = 'foreign-data wrapper for flat cstore access'
default_version = '1.6'
default_version = '1.7'
module_pathname = '$libdir/cstore_fdw'
relocatable = true
2 changes: 1 addition & 1 deletion cstore_fdw.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
/* CStore file signature */
#define CSTORE_MAGIC_NUMBER "citus_cstore"
#define CSTORE_VERSION_MAJOR 1
#define CSTORE_VERSION_MINOR 6
#define CSTORE_VERSION_MINOR 7

/* miscellaneous defines */
#define CSTORE_FDW_NAME "cstore_fdw"
Expand Down

0 comments on commit 5ba1178

Please sign in to comment.