Prepare 1.12

This commit is contained in:
Yugo Nagata 2025-09-04 22:54:58 +09:00
parent b926225089
commit 132816cffe
6 changed files with 12 additions and 9 deletions

View file

@ -18,8 +18,8 @@ DATA = pg_ivm--1.0.sql \
pg_ivm--1.3--1.4.sql pg_ivm--1.4--1.5.sql pg_ivm--1.5--1.6.sql \ pg_ivm--1.3--1.4.sql pg_ivm--1.4--1.5.sql pg_ivm--1.5--1.6.sql \
pg_ivm--1.6--1.7.sql pg_ivm--1.7--1.8.sql pg_ivm--1.8--1.9.sql \ pg_ivm--1.6--1.7.sql pg_ivm--1.7--1.8.sql pg_ivm--1.8--1.9.sql \
pg_ivm--1.9--1.10.sql \ pg_ivm--1.9--1.10.sql \
pg_ivm--1.10.sql \ pg_ivm--1.10.sql \
pg_ivm--1.10--1.11.sql pg_ivm--1.10--1.11.sql pg_ivm--1.11--1.12.sql
REGRESS = pg_ivm create_immv refresh_immv REGRESS = pg_ivm create_immv refresh_immv

View file

@ -2,7 +2,7 @@
The `pg_ivm` module provides Incremental View Maintenance (IVM) feature for PostgreSQL. The `pg_ivm` module provides Incremental View Maintenance (IVM) feature for PostgreSQL.
The extension is compatible with PostgreSQL 13, 14, 15, 16, and 17. The extension is compatible with PostgreSQL 13, 14, 15, 16, 17, and 18.
## Description ## Description

View file

@ -60,6 +60,7 @@ install_data(
'pg_ivm--1.9--1.10.sql', 'pg_ivm--1.9--1.10.sql',
'pg_ivm--1.10.sql', 'pg_ivm--1.10.sql',
'pg_ivm--1.10--1.11.sql', 'pg_ivm--1.10--1.11.sql',
'pg_ivm--1.11--1.12.sql',
'pg_ivm.control', 'pg_ivm.control',
install_dir: sharedir / 'extension', install_dir: sharedir / 'extension',
) )

0
pg_ivm--1.11--1.12.sql Normal file
View file

View file

@ -1,6 +1,6 @@
# incremental view maintenance extension # incremental view maintenance extension
comment = 'incremental view maintenance on PostgreSQL' comment = 'incremental view maintenance on PostgreSQL'
default_version = '1.11' default_version = '1.12'
module_pathname = '$libdir/pg_ivm' module_pathname = '$libdir/pg_ivm'
relocatable = false relocatable = false
schema = pg_catalog schema = pg_catalog

View file

@ -1,6 +1,6 @@
# How to build RPM: # How to build RPM:
# #
# rpmbuild -bb pg_ivm.spec --define "pgmajorversion 17" --define "pginstdir /usr/pgsql-17" # rpmbuild -bb pg_ivm.spec --define "pgmajorversion 18" --define "pginstdir /usr/pgsql-18"
%global sname pg_ivm %global sname pg_ivm
@ -8,11 +8,11 @@
%global llvm 1 %global llvm 1
%endif %endif
Summary: PostgreSQL-based distributed RDBMS Summary: Incremental View Maintenance (IVM) feature for PostgreSQL.
Name: %{sname}_%{pgmajorversion} Name: %{sname}_%{pgmajorversion}
Version: 1.11 Version: 1.12
Release: 1%{dist} Release: 1%{dist}
License: BSD License: PostgreSQL
Vendor: IVM Development Group Vendor: IVM Development Group
URL: https://github.com/sraoss/%{sname} URL: https://github.com/sraoss/%{sname}
Source0: https://github.com/sraoss/%{sname}/archive/v%{version}.tar.gz Source0: https://github.com/sraoss/%{sname}/archive/v%{version}.tar.gz
@ -55,8 +55,10 @@ PATH=%{pginstdir}/bin:$PATH %{__make} %{?_smp_mflags} INSTALL_PREFIX=%{buildroot
%endif %endif
%changelog %changelog
* Mon Sep 4 2025 - Yugo Nagata <nagata@sraoss.co.jp> 1.12-1
- Update to 1.12
* Mon May 25 2025 - Yugo Nagata <nagata@sraoss.co.jp> 1.11-1 * Mon May 25 2025 - Yugo Nagata <nagata@sraoss.co.jp> 1.11-1
- Update to 1.10 - Update to 1.11
* Tue Mar 11 2025 - Yugo Nagata <nagata@sraoss.co.jp> 1.10-1 * Tue Mar 11 2025 - Yugo Nagata <nagata@sraoss.co.jp> 1.10-1
- Update to 1.10 - Update to 1.10
* Fri Jul 31 2024 - Yugo Nagata <nagata@sraoss.co.jp> 1.9-1 * Fri Jul 31 2024 - Yugo Nagata <nagata@sraoss.co.jp> 1.9-1