diff --git a/README.md b/README.md index 28cfe079..63aec6cd 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ To restore from a backup, use the `restore` command. Up to PostgreSQL11, note t $ pg_ctl stop -m immediate $ pg_rman restore $ cat $PGDATA/recovery.conf -# recovery.conf generated by pg_rman 1.3.11 +# recovery.conf generated by pg_rman 1.3.12 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 60490767..aa82637d 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.11 +pg_rman 1.3.12 1 ###### COMMAND OPTION TEST-0003 ###### diff --git a/pg_rman.c b/pg_rman.c index 419a4fe8..b2f7292c 100644 --- a/pg_rman.c +++ b/pg_rman.c @@ -14,7 +14,7 @@ #include #include -const char *PROGRAM_VERSION = "1.3.11"; +const char *PROGRAM_VERSION = "1.3.12"; const char *PROGRAM_URL = "http://github.com/ossc-db/pg_rman"; const char *PROGRAM_ISSUES = "http://github.com/ossc-db/pg_rman/issues";