Skip to content

Commit

Permalink
1.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ibarwick committed May 31, 2019
1 parent 280e1bd commit ddb3dbf
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Revision history for firebird_fdw

1.1.0 2019-05-??
1.1.0 2019-05-31
- Add utility function "firebird_fdw_close_connections()"
- Add utility function "firebird_fdw_diag()"
- Adapt code to deal with tuple-level OID removal in PostgreSQL 12
Expand Down
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# Firebird Foreign Data Wrapper for PostgreSQL
#
# Copyright (c) 2013-2018 Ian Barwick
# Copyright (c) 2013-2019 Ian Barwick
#
# This software is released under the PostgreSQL Licence
#
Expand All @@ -18,7 +18,6 @@ EXTENSION = firebird_fdw
EXTVERSION = $(shell grep default_version $(EXTENSION).control | sed -e "s/default_version[[:space:]]*=[[:space:]]*'\([^']*\)'/\1/")

DATA = $(filter-out $(wildcard sql/*--*.sql),$(wildcard sql/*.sql))
#DOCS = $(wildcard doc/*.md)
USE_MODULE_DB = 1
MODULE_big = $(EXTENSION)

Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,16 @@ support, as well as pushdown of some operations. While it appears to be
working reliably, please be aware this is still very much work-in-progress;
*USE AT YOUR OWN RISK*.

`firebird_fdw` is designed to be compatible with PostgreSQL 9.2 ~ 11.
Write support is only available in PostgreSQL 9.3 and later. It is not
`firebird_fdw` is designed to be compatible with PostgreSQL 9.2 ~ 11,
and the latest release (1.1.0) works with PostgreSQL 12 (currently in beta).
Write support is available in PostgreSQL 9.3 and later. It is not
designed to work with forks of the main PostgreSQL community version.

`firebird_fdw` was written for Firebird 2.5 and will probably work with
Firebird 2.0 or later. It should work with earlier versions if the
`disable_pushdowns` option is set (see below). It works with Firebird 3.0.x
but has not yet been extensively tested with that version, and does not take
advantage of all new Firebird 3 features. This will be addressed in future
advantage of all new Firebird 3 features. This will be addressed in future
releases.

Features
Expand Down Expand Up @@ -55,7 +56,7 @@ build system; for details see here:
Prerequisites:

- Firebird client library (`libfbclient`) and API header file (`ibase.h`)
- `libfq`, a slightly saner API wrapper for the Firebird C API; see:
- `libfq`, a `libpq`-like API wrapper for the Firebird C API; see:

https://github.com/ibarwick/libfq

Expand Down Expand Up @@ -304,7 +305,7 @@ Useful links

* Source
- https://github.com/ibarwick/firebird_fdw (public mirror)
- http://pgxn.org/dist/firebird_fdw/
- https://pgxn.org/dist/firebird_fdw/

* Blog (including release notes)
- http://sql-info.de/postgresql/firebird-fdw/index.html
Expand Down
2 changes: 1 addition & 1 deletion sql/firebird_fdw--1.1.0.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* foreign-data wrapper for Firebird
*
* Copyright (c) 2013-2018 Ian Barwick
* Copyright (c) 2013-2019 Ian Barwick
*
* This software is released under the PostgreSQL Licence
*
Expand Down
2 changes: 1 addition & 1 deletion src/firebird_fdw.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Foreign Data Wrapper for Firebird
*
* Copyright (c) 2013-2018 Ian Barwick
* Copyright (c) 2013-2019 Ian Barwick
*
* This software is released under the PostgreSQL Licence
*
Expand Down

0 comments on commit ddb3dbf

Please sign in to comment.