diff --git a/CHANGELOG.md b/CHANGELOG.md index 2002e8b..3aad1e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,11 @@ # Release Notes ## 1.3.0 -Release date: **YYYY-MM-DD** +Release date: **2024-09-30** ### Enhancements -* Support for PodtgreSQL 9.6 and 10: This adds support for EOL'd PostgreSQL versions. It is definitely discouraged to use unsupported versions, but in case you're for whatever reason unable to perform an upgrade you can now use the `rdf_fdw` in these versions. - -* PostgreSQL 17 support. +* Support for PostgreSQL 9.6, 10, and 17: This adds support for the long EOL'd PostgreSQL versions 9.6 and 10. It is definitely discouraged to use these unsupported versions, but in case you're for whatever reason unable to perform an upgrade you can now use the `rdf_fdw`. ## 1.2.0 Release date: **2024-05-22** diff --git a/README.md b/README.md index db4a80b..c4d78a8 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ CREATE EXTENSION rdf_fdw; To install an specific version add the full version number in the `WITH VERSION` clause ```sql -CREATE EXTENSION rdf_fdw WITH VERSION '1.0'; +CREATE EXTENSION rdf_fdw WITH VERSION '1.3'; ``` To run the predefined regression tests run `make installcheck` with the user `postgres`: @@ -105,7 +105,7 @@ ALTER EXTENSION rdf_fdw UPDATE; To update to an specific version use `UPDATE TO` and the full version number ```sql -ALTER EXTENSION rdf_fdw UPDATE TO '1.1'; +ALTER EXTENSION rdf_fdw UPDATE TO '1.3'; ``` ## [Usage](https://github.com/jimjonesbr/rdf_fdw/blob/master/README.md#usage) diff --git a/rdf_fdw.c b/rdf_fdw.c index 6036691..a6cb344 100644 --- a/rdf_fdw.c +++ b/rdf_fdw.c @@ -99,7 +99,7 @@ #define array_create_iterator(arr, slice_ndim) array_create_iterator(arr, slice_ndim, NULL) #endif /* PG_VERSION_NUM */ -#define FDW_VERSION "1.3.0-dev" +#define FDW_VERSION "1.3.0" #define REQUEST_SUCCESS 0 #define REQUEST_FAIL -1 #define RDF_XML_NAME_TAG "name"