From 443f39f64315f4480e0eb31d0f9b71e8e6d0bc51 Mon Sep 17 00:00:00 2001 From: MoonInsung Date: Tue, 22 Jan 2019 10:32:07 +0900 Subject: [PATCH] Change version of 1.3.8 --- README.md | 2 +- expected/option.out | 2 +- pg_rman.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c9e0108f..56e62d8f 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ To restore from a backup, use the `restore` command. Note that pg_rman itself g $ pg_ctl stop -m immediate $ pg_rman restore $ cat $PGDATA/recovery.conf -# recovery.conf generated by pg_rman 1.3.7 +# recovery.conf generated by pg_rman 1.3.8 restore_command = 'cp /home/postgres/arclog/%f %p' recovery_target_timeline = '1' $ pg_ctl start diff --git a/expected/option.out b/expected/option.out index 2337fce6..a855fe3b 100644 --- a/expected/option.out +++ b/expected/option.out @@ -73,7 +73,7 @@ Report bugs to . ###### COMMAND OPTION TEST-0002 ###### ###### version option ###### -pg_rman 1.3.7 +pg_rman 1.3.8 1 ###### COMMAND OPTION TEST-0003 ###### diff --git a/pg_rman.c b/pg_rman.c index 6dd1bc39..f6380993 100644 --- a/pg_rman.c +++ b/pg_rman.c @@ -14,7 +14,7 @@ #include #include -const char *PROGRAM_VERSION = "1.3.7"; +const char *PROGRAM_VERSION = "1.3.8"; const char *PROGRAM_URL = "http://github.com/ossc-db/pg_rman"; const char *PROGRAM_ISSUES = "http://github.com/ossc-db/pg_rman/issues";