Skip to content

Commit

Permalink
1.2.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ibarwick committed Sep 14, 2021
1 parent 6f4fb04 commit 1f359da
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "9.3.0"
"PostgreSQL": "9.4.0"
}
}
},
Expand All @@ -19,7 +19,7 @@
"abstract": "A PostgreSQL foreign data wrapper (FDW) for Firebird",
"file": "firebird_fdw--1.2.0.sql",
"docfile": "README.md",
"version": "1.2.1"
"version": "1.2.2"
}
},
"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 10201
#define FIREBIRD_FDW_VERSION_STRING "1.2.1"
#define FIREBIRD_FDW_VERSION 10202
#define FIREBIRD_FDW_VERSION_STRING "1.2.2"

#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 @@ -27,7 +27,7 @@
#
# TODO: parse the value from "firebird_fdw.control" and check for a match

my $version = '10201';
my $version = '10202';

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

Expand Down

0 comments on commit 1f359da

Please sign in to comment.