Skip to content

Commit

Permalink
Set v1.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jimjonesbr committed Sep 30, 2024
1 parent 806bd1b commit d4e9f4d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
6 changes: 2 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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**
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion rdf_fdw.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit d4e9f4d

Please sign in to comment.