Skip to content

Commit

Permalink
Stamp 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
eulerto committed Apr 25, 2024
1 parent 7f75b33 commit 75629c2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ Before installing **wal2json**, you should have PostgreSQL 9.4+ installed (inclu
If you compile PostgreSQL by yourself and install it in `/home/euler/pg16`:

```
$ tar -zxf wal2json-wal2json_2_5.tar.gz
$ cd wal2json-wal2json_2_5
$ tar -zxf wal2json-wal2json_2_6.tar.gz
$ cd wal2json-wal2json_2_6
$ export PATH=/home/euler/pg16/bin:$PATH
$ make
$ make install
Expand All @@ -51,8 +51,8 @@ If you are using [PostgreSQL yum repository](https://yum.postgresql.org):

```
$ sudo yum install postgresql16-devel
$ tar -zxf wal2json-wal2json_2_5.tar.gz
$ cd wal2json-wal2json_2_5
$ tar -zxf wal2json-wal2json_2_6.tar.gz
$ cd wal2json-wal2json_2_6
$ export PATH=/usr/pgsql-16/bin:$PATH
$ make
$ make install
Expand All @@ -62,8 +62,8 @@ If you are using [PostgreSQL apt repository](https://wiki.postgresql.org/wiki/Ap

```
$ sudo apt-get install postgresql-server-dev-16
$ tar -zxf wal2json-wal2json_2_5.tar.gz
$ cd wal2json-wal2json_2_5
$ tar -zxf wal2json-wal2json_2_6.tar.gz
$ cd wal2json-wal2json_2_6
$ export PATH=/usr/lib/postgresql/16/bin:$PATH
$ make
$ make install
Expand Down
4 changes: 2 additions & 2 deletions wal2json.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
#include "utils/rel.h"
#include "utils/syscache.h"

#define WAL2JSON_VERSION "2.5dev"
#define WAL2JSON_VERSION_NUM 205
#define WAL2JSON_VERSION "2.6"
#define WAL2JSON_VERSION_NUM 206

#define WAL2JSON_FORMAT_VERSION 2
#define WAL2JSON_FORMAT_MIN_VERSION 1
Expand Down

0 comments on commit 75629c2

Please sign in to comment.