Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,26 @@ on:
push:
branches:
- master
- REL_18_STABLE
- REL_17_STABLE
- REL_16_STABLE
- REL_15_STABLE
- REL_14_STABLE
- REL_13_STABLE
pull_request:
branches:
- master
- REL_18_STABLE
- REL_17_STABLE
- REL_16_STABLE
- REL_15_STABLE
- REL_14_STABLE
- REL_13_STABLE

jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
env:
CACHE_VERSION: 20250128 # to identify cache version
CACHE_VERSION: 20260112 # to identify cache version

steps:
- name: get current branch name
Expand All @@ -39,12 +39,12 @@ jobs:
shell: bash -xe {0}
run: |
declare -A versions=(
["master"]="17.5"
["REL_17_STABLE"]="17.5"
["REL_16_STABLE"]="16.9"
["REL_15_STABLE"]="15.13"
["REL_14_STABLE"]="14.18"
["REL_13_STABLE"]="13.21"
["master"]="18.1"
["REL_18_STABLE"]="18.1"
["REL_17_STABLE"]="17.7"
["REL_16_STABLE"]="16.11"
["REL_15_STABLE"]="15.15"
["REL_14_STABLE"]="14.20"
)
[ -z "${versions[${{ env.BRANCH }}]}" ] && exit 1 # check if the key exists
echo "PGVERSION=${versions[${{ env.BRANCH }}]}" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
RHEL_VERSION: ["8", "9", "10"]
PG_VERSION: ["13", "14", "15", "16", "17"]
PG_VERSION: ["14", "15", "16", "17", "18"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ different PostgreSQL server versions without introducing server version
check code blocks. Please choose a branch to match the PostgreSQL version
you will be building pg_rman against.

* master : branch for PostgreSQL 18 [![Test](https://github.com/ossc-db/pg_rman/actions/workflows/build.yml/badge.svg?branch=master&event=push)](https://github.com/ossc-db/pg_rman/actions/workflows/build.yml)
* master : branch for PostgreSQL 19 [![Test](https://github.com/ossc-db/pg_rman/actions/workflows/build.yml/badge.svg?branch=master&event=push)](https://github.com/ossc-db/pg_rman/actions/workflows/build.yml)
* REL_18_STABLE : branch for PostgreSQL 18 [![Test](https://github.com/ossc-db/pg_rman/actions/workflows/build.yml/badge.svg?branch=REL_18_STABLE&event=push)](https://github.com/ossc-db/pg_rman/actions/workflows/build.yml)
* REL_17_STABLE : branch for PostgreSQL 17 [![Test](https://github.com/ossc-db/pg_rman/actions/workflows/build.yml/badge.svg?branch=REL_17_STABLE&event=push)](https://github.com/ossc-db/pg_rman/actions/workflows/build.yml)
* REL_16_STABLE : branch for PostgreSQL 16 [![Test](https://github.com/ossc-db/pg_rman/actions/workflows/build.yml/badge.svg?branch=REL_16_STABLE&event=push)](https://github.com/ossc-db/pg_rman/actions/workflows/build.yml)
* REL_15_STABLE : branch for PostgreSQL 15 [![Test](https://github.com/ossc-db/pg_rman/actions/workflows/build.yml/badge.svg?branch=REL_15_STABLE&event=push)](https://github.com/ossc-db/pg_rman/actions/workflows/build.yml)
* REL_14_STABLE : branch for PostgreSQL 14 [![Test](https://github.com/ossc-db/pg_rman/actions/workflows/build.yml/badge.svg?branch=REL_14_STABLE&event=push)](https://github.com/ossc-db/pg_rman/actions/workflows/build.yml)
* REL_13_STABLE : branch for PostgreSQL 13 [![Test](https://github.com/ossc-db/pg_rman/actions/workflows/build.yml/badge.svg?branch=REL_13_STABLE&event=push)](https://github.com/ossc-db/pg_rman/actions/workflows/build.yml)

How to use
----------
Expand Down
3 changes: 2 additions & 1 deletion SPECS/pg_rman16.spec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
## Set general information for pg_rman.
Summary: Backup and Recovery Tool for PostgreSQL
Name: pg_rman
Version: 1.3.18
Version: 1.3.19
Release: 1%{?dist}
License: BSD
Group: Applications/Databases
Expand Down Expand Up @@ -58,6 +58,7 @@ rm -rf %{buildroot}

# History of pg_rman.
%changelog
* Tue Jan 13 2026 - NTT OSS Center <sn.kato@ntt.com> 1.3.19-1
* Mon Jul 7 2025 - NTT OSS Center <sn.kato@ntt.com> 1.3.18-1
* Tue Jan 28 2025 - NTT OSS Center <zuowei.yan.tb@hco.ntt.co.jp> 1.3.17-1
* Mon Dec 4 2023 - NTT OSS Center <zuowei.yan.tb@hco.ntt.co.jp> 1.3.16-1
Expand Down
2 changes: 1 addition & 1 deletion docs/index-ja.html
Original file line number Diff line number Diff line change
Expand Up @@ -1459,7 +1459,7 @@ <h2>RPMを用いたインストール</h2>
<h1 id="requirement">動作環境</h2>
<dl>
<dt>PostgreSQLバージョン</dt>
<dd>PostgreSQL 13, 14, 15, 16, 17</dd>
<dd>PostgreSQL 14, 15, 16, 17, 18</dd>
<dt>OS</dt>
<dd>RHEL 8, 9, 10</dd>
</dl>
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1449,7 +1449,7 @@ <h2 id="Install.from.rpm">Install from rpm package</h2>
<h1 id="requirement">Requirements</h1>
<dl>
<dt>PostgreSQL</dt>
<dd>PostgreSQL 13, 14, 15, 16, 17</dd>
<dd>PostgreSQL 14, 15, 16, 17, 18</dd>
<dt>OS</dt>
<dd>RHEL 8, 9, 10</dd>
</dl>
Expand Down
2 changes: 1 addition & 1 deletion expected/option.out
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Report bugs to <http://github.com/ossc-db/pg_rman/issues>.

###### COMMAND OPTION TEST-0002 ######
###### version option ######
pg_rman 1.3.18
pg_rman 1.3.19
1

###### COMMAND OPTION TEST-0003 ######
Expand Down
2 changes: 1 addition & 1 deletion pg_rman.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include <time.h>
#include <sys/stat.h>

const char *PROGRAM_VERSION = "1.3.18";
const char *PROGRAM_VERSION = "1.3.19";
const char *PROGRAM_URL = "http://github.com/ossc-db/pg_rman";
const char *PROGRAM_ISSUES = "http://github.com/ossc-db/pg_rman/issues";

Expand Down