From 75629c2e1e81a12350cc9d63782fc53252185d8d Mon Sep 17 00:00:00 2001 From: Euler Taveira Date: Wed, 24 Apr 2024 22:02:38 -0300 Subject: [PATCH] Stamp 2.6 --- README.md | 12 ++++++------ wal2json.c | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 42e495cb6431..ca791a0516fb 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 @@ -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 diff --git a/wal2json.c b/wal2json.c index a1b8a6160593..0c6295dcbe54 100644 --- a/wal2json.c +++ b/wal2json.c @@ -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