Skip to content

Commit

Permalink
Bumped version to 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
GeoffMontee committed Sep 26, 2020
1 parent fe683e0 commit 0137bba
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion InstallAlpine.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ apk add postgresql=11.6-r0 postgresql-client=11.6-r0 postgresql-dev=11.6-r0
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="v2.0.0-alpha.3"
export TDS_FDW_VERSION="v2.0.2"
apk add wget
wget https://github.com/tds-fdw/tds_fdw/archive/${TDS_FDW_VERSION}.gz
tar -xvzf ${TDS_FDW_VERSION}.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion InstallCentOS.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ sudo yum install llvm-toolset-7-clang llvm5.0
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="v2.0.0-alpha.3"
export TDS_FDW_VERSION="v2.0.2"
wget https://github.com/tds-fdw/tds_fdw/archive/v${TDS_FDW_VERSION}.tar.gz -O tds_fdw-${TDS_FDW_VERSION}.tar.gz
tar -xvzf tds_fdw-${TDS_FDW_VERSION}.tar.gz
cd tds_fdw-${TDS_FDW_VERSION}
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="v2.0.0-alpha.3"
export TDS_FDW_VERSION="v2.0.2"
sudo apt-get install wget
wget https://github.com/tds-fdw/tds_fdw/archive/${TDS_FDW_VERSION}.gz
tar -xvzf ${TDS_FDW_VERSION}.tar.gz
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="v2.0.0-alpha.3"
export TDS_FDW_VERSION="v2.0.2"
sudo apt-get install wget
wget https://github.com/tds-fdw/tds_fdw/archive/${TDS_FDW_VERSION}.tar.gz
tar -xvzf ${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="v2.0.0-alpha.3"
export TDS_FDW_VERSION="v2.0.2"
wget https://github.com/tds-fdw/tds_fdw/archive/${TDS_FDW_VERSION}.gz
tar -xvzf ${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.1",
"version": "2.0.2",
"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.1"
"version": "2.0.2"
}
},
"resources": {
Expand Down
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.1'
default_version = '2.0.2'
module_pathname = '$libdir/tds_fdw'
relocatable = true

0 comments on commit 0137bba

Please sign in to comment.