diff --git a/README.md b/README.md index e8c0655c..efb76147 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,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.6 +# recovery.conf generated by pg_rman 1.3.7 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 6ba0e33c..2337fce6 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.6 +pg_rman 1.3.7 1 ###### COMMAND OPTION TEST-0003 ###### diff --git a/pg_rman.c b/pg_rman.c index c03a5ded..f520950f 100644 --- a/pg_rman.c +++ b/pg_rman.c @@ -14,7 +14,7 @@ #include #include -const char *PROGRAM_VERSION = "1.3.6"; +const char *PROGRAM_VERSION = "1.3.7"; const char *PROGRAM_URL = "http://github.com/ossc-db/pg_rman"; const char *PROGRAM_ISSUES = "http://github.com/ossc-db/pg_rman/issues";