From a4b88210a8ebc08d979a21261bc4a0b9761d0714 Mon Sep 17 00:00:00 2001 From: Mithun CY Date: Wed, 17 Oct 2018 08:54:43 -0700 Subject: [PATCH] Stamp 2.5.0 Updated the README with release notes. --- README.md | 12 +++++++++++- mysql_fdw.c | 4 ++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 52acdf8..1c14ae8 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ MySQL Foreign Data Wrapper for PostgreSQL This PostgreSQL extension implements a Foreign Data Wrapper (FDW) for [MySQL][1]. -Please note that this version of mysql_fdw works with PostgreSQL and EDB Postgres Advanced Server 9.3, 9.4, 9.5, 9.6 and 10. +Please note that this version of mysql_fdw works with PostgreSQL and EDB Postgres Advanced Server 9.3, 9.4, 9.5, 9.6, 10 and 11. 1. Installation --------------- @@ -163,6 +163,16 @@ If you require commercial support, please contact the EnterpriseDB sales team, o Changelog --------- + +Version 2.5.0 +------------- +The following features are added as part of this mysql_fdw release : + +1) Support for PostgreSQL 11 + +2) Support for MySQL 8.0 + + Version 2.4.0 ------------- The following features are added as part of this mysql_fdw release : diff --git a/mysql_fdw.c b/mysql_fdw.c index cf8f195..51d1a17 100644 --- a/mysql_fdw.c +++ b/mysql_fdw.c @@ -82,9 +82,9 @@ /* * In PG 9.5.1 the number will be 90501, - * our version is 2.4.0 so number will be 20400 + * our version is 2.5.0 so number will be 20500 */ -#define CODE_VERSION 20400 +#define CODE_VERSION 20500 PG_MODULE_MAGIC;