Skip to content

Commit

Permalink
1.3.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ibarwick committed Jun 21, 2023
1 parent 6f4e040 commit 31be307
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Revision history for firebird_fdw

1.3.1 2022-06-22
- Support for PostgreSQL 16 added

1.3.0 2022-12-28
- Support for PostgreSQL 15 added
- Support for PostgreSQL 9.3/9.4 removed
Expand Down
2 changes: 1 addition & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"abstract": "A PostgreSQL foreign data wrapper (FDW) for Firebird",
"file": "firebird_fdw--1.3.0.sql",
"docfile": "README.md",
"version": "1.3.0"
"version": "1.3.1"
}
},
"resources": {
Expand Down
4 changes: 2 additions & 2 deletions src/firebird_fdw.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@

#include "libfq.h"

#define FIREBIRD_FDW_VERSION 10300
#define FIREBIRD_FDW_VERSION_STRING "1.3.0"
#define FIREBIRD_FDW_VERSION 10301
#define FIREBIRD_FDW_VERSION_STRING "1.3.1"

#define FB_FDW_LOGPREFIX "[firebird_fdw] "
#define FB_FDW_LOGPREFIX_LEN strlen(FB_FDW_LOGPREFIX)
Expand Down
2 changes: 1 addition & 1 deletion t/01-extension.pl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#
# TODO: parse the value from "firebird_fdw.control" and check for a match

my $version = '10300';
my $version = '10301';

my ($res, $res_stdout, $res_stderr) = $node->psql(q|SELECT firebird_fdw_version()|);

Expand Down

0 comments on commit 31be307

Please sign in to comment.