Skip to content

Commit

Permalink
Merge pull request #367 from tds-fdw/release-2.0.4
Browse files Browse the repository at this point in the history
Issue #364: Release 2.0.4 to prepare for PostgreSQL 17
  • Loading branch information
GeoffMontee authored Sep 16, 2024
2 parents 6558f38 + b46cd64 commit 5fd7d42
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion InstallAlpine.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ apk add postgresql-dev
If you'd like to use one of the release packages, you can download and install them via something like the following:

```bash
export TDS_FDW_VERSION="2.0.3"
export TDS_FDW_VERSION="2.0.4"
apk add wget
wget https://github.com/tds-fdw/tds_fdw/archive/v${TDS_FDW_VERSION}.tar.gz
tar -xvzf v${TDS_FDW_VERSION}.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion InstallDebian.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ sudo apt-get install postgresql-11 postgresql-client-11 postgresql-server-dev-11
If you'd like to use one of the release packages, you can download and install them via something like the following:

```bash
export TDS_FDW_VERSION="2.0.3"
export TDS_FDW_VERSION="2.0.4"
sudo apt-get install wget
wget https://github.com/tds-fdw/tds_fdw/archive/v${TDS_FDW_VERSION}.tar.gz
tar -xvzf v${TDS_FDW_VERSION}.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion InstallOSX.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Or use Postgres.app: <http://postgresapp.com/>
If you'd like to use one of the release packages, you can download and install them via something like the following:

```bash
export TDS_FDW_VERSION="2.0.3"
export TDS_FDW_VERSION="2.0.4"
wget https://github.com/tds-fdw/tds_fdw/archive/v${TDS_FDW_VERSION}.tar.gz
tar -xvzf v${TDS_FDW_VERSION}.tar.gz
cd tds_fdw-${TDS_FDW_VERSION}
Expand Down
2 changes: 1 addition & 1 deletion InstallRHELandClones.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ sudo yum install centos-release-scl
If you'd like to use one of the release packages, you can download and install them via something like the following:

```bash
export TDS_FDW_VERSION="2.0.3"
export TDS_FDW_VERSION="2.0.4"
wget https://github.com/tds-fdw/tds_fdw/archive/v${TDS_FDW_VERSION}.tar.gz
tar -xvzf v${TDS_FDW_VERSION}.tar.gz
cd tds_fdw-${TDS_FDW_VERSION}
Expand Down
2 changes: 1 addition & 1 deletion InstallUbuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ sudo apt-get install postgresql-11 postgresql-client-11 postgresql-server-dev-11
If you'd like to use one of the release packages, you can download and install them via something like the following:

```bash
export TDS_FDW_VERSION="2.0.3"
export TDS_FDW_VERSION="2.0.4"
sudo apt-get install wget
wget https://github.com/tds-fdw/tds_fdw/archive/v${TDS_FDW_VERSION}.tar.gz
tar -xvzf v${TDS_FDW_VERSION}.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion InstallopenSUSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ sudo zypper install postgresql10 postgresql10-server postgresql10-devel
If you'd like to use one of the release packages, you can download and install them via something like the following:

```bash
export TDS_FDW_VERSION="2.0.3"
export TDS_FDW_VERSION="2.0.4"
wget https://github.com/tds-fdw/tds_fdw/archive/v${TDS_FDW_VERSION}.tar.gz
tar -xvzf v${TDS_FDW_VERSION}.tar.gz
cd tds_fdw-${TDS_FDW_VERSION}/
Expand Down
4 changes: 2 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "tds_fdw",
"abstract": "TDS Foreign data wrapper",
"description": "This library contains a single PostgreSQL extension, a foreign data wrapper called \"tds_fdw\". It can be used to communicate with Microsoft SQL Server and Sybase databases.",
"version": "2.0.3",
"version": "2.0.4",
"maintainer": [
"Geoff Montee <[email protected]>"
],
Expand All @@ -19,7 +19,7 @@
"abstract": "TDS Foreign data wrapper",
"file": "sql/tds_fdw.sql",
"docfile": "README.md",
"version": "2.0.3"
"version": "2.0.4"
}
},
"resources": {
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ EXTVERSION = $(shell grep default_version $(EXTENSION).control | sed -e "s/defau

DOCS = README.${EXTENSION}.md

DATA = tds_fdw--2.0.1--2.0.2.sql tds_fdw--2.0.2--2.0.3.sql sql/$(EXTENSION)--$(EXTVERSION).sql
DATA = tds_fdw--2.0.1--2.0.2.sql tds_fdw--2.0.2--2.0.3.sql tds_fdw--2.0.3--2.0.4.sql sql/$(EXTENSION)--$(EXTVERSION).sql

PG_CONFIG = pg_config

Expand Down
2 changes: 2 additions & 0 deletions tds_fdw--2.0.3--2.0.4.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- complain if script is sourced in psql, rather than via ALTER EXTENSION
\echo Use "ALTER EXTENSION tds_fdw UPDATE TO '2.0.4'" to load this file. \quit
2 changes: 1 addition & 1 deletion tds_fdw.control
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
#----------------------------------------------------------------------------

comment = 'Foreign data wrapper for querying a TDS database (Sybase or Microsoft SQL Server)'
default_version = '2.0.3'
default_version = '2.0.4'
module_pathname = '$libdir/tds_fdw'
relocatable = true

0 comments on commit 5fd7d42

Please sign in to comment.