From 6e1a46d4cc02cb5e16e7a78bc4fe214ddb626459 Mon Sep 17 00:00:00 2001 From: Julien Rouhaud Date: Sun, 28 Apr 2024 09:18:01 +0800 Subject: [PATCH] Update copyright year. --- LICENSE | 2 +- debian/copyright | 2 +- docs/conf.py | 2 +- hypopg--1.3.1--1.4.0.sql | 4 ++-- hypopg--1.3.1.sql | 2 +- hypopg--1.4.0.sql | 4 ++-- hypopg.c | 2 +- hypopg_index.c | 2 +- import/hypopg_import.c | 2 +- import/hypopg_import_index.c | 2 +- include/hypopg.h | 2 +- include/hypopg_import.h | 2 +- include/hypopg_import_index.h | 2 +- include/hypopg_index.h | 2 +- 14 files changed, 16 insertions(+), 16 deletions(-) diff --git a/LICENSE b/LICENSE index 1267c02..d0ae05c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Portions Copyright (c) 2015-2023, PostgreSQL GLobal Development Group +Portions Copyright (c) 2015-2024, PostgreSQL GLobal Development Group Portions Copyright (c) 1994, The Regents of the University of California diff --git a/debian/copyright b/debian/copyright index 96f6f37..9c00c1a 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,4 +1,4 @@ -Portions Copyright (c) 2015-2023, PostgreSQL GLobal Development Group +Portions Copyright (c) 2015-2024, PostgreSQL GLobal Development Group Portions Copyright (c) 1994, The Regents of the University of California diff --git a/docs/conf.py b/docs/conf.py index ebc771a..dfc672c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,7 +50,7 @@ # General information about the project. project = 'HypoPG' -copyright = '2015-2023, Julien Rouhaud' +copyright = '2015-2024, Julien Rouhaud' author = 'Julien Rouhaud' # The version info for the project you're documenting, acts as replacement for diff --git a/hypopg--1.3.1--1.4.0.sql b/hypopg--1.3.1--1.4.0.sql index ce0a3a1..7225ae4 100644 --- a/hypopg--1.3.1--1.4.0.sql +++ b/hypopg--1.3.1--1.4.0.sql @@ -1,7 +1,7 @@ -- This program is open source, licensed under the PostgreSQL License. -- For license terms, see the LICENSE file. -- --- Copyright (C) 2015-2023: Julien Rouhaud +-- Copyright (C) 2015-2024: Julien Rouhaud -- complain if script is sourced in psql, rather than via CREATE EXTENSION \echo Use "ALTER EXTENSION hypopg" to load this file. \quit @@ -47,4 +47,4 @@ AS SELECT hl.*, true AS is_hypo FROM hypopg_hidden_indexes() hi JOIN hypopg_list_indexes hl on hl.indexrelid = hi.indexid - ORDER BY index_name; \ No newline at end of file + ORDER BY index_name; diff --git a/hypopg--1.3.1.sql b/hypopg--1.3.1.sql index 8492966..37db644 100644 --- a/hypopg--1.3.1.sql +++ b/hypopg--1.3.1.sql @@ -1,7 +1,7 @@ -- This program is open source, licensed under the PostgreSQL License. -- For license terms, see the LICENSE file. -- --- Copyright (C) 2015-2023: Julien Rouhaud +-- Copyright (C) 2015-2024: Julien Rouhaud -- complain if script is sourced in psql, rather than via CREATE EXTENSION \echo Use "CREATE EXTENSION hypopg" to load this file. \quit diff --git a/hypopg--1.4.0.sql b/hypopg--1.4.0.sql index f9d580c..ad764f6 100644 --- a/hypopg--1.4.0.sql +++ b/hypopg--1.4.0.sql @@ -1,7 +1,7 @@ -- This program is open source, licensed under the PostgreSQL License. -- For license terms, see the LICENSE file. -- --- Copyright (C) 2015-2023: Julien Rouhaud +-- Copyright (C) 2015-2024: Julien Rouhaud -- complain if script is sourced in psql, rather than via CREATE EXTENSION \echo Use "CREATE EXTENSION hypopg" to load this file. \quit @@ -102,4 +102,4 @@ AS SELECT hl.*, true AS is_hypo FROM hypopg_hidden_indexes() hi JOIN hypopg_list_indexes hl on hl.indexrelid = hi.indexid - ORDER BY index_name; \ No newline at end of file + ORDER BY index_name; diff --git a/hypopg.c b/hypopg.c index f869699..de09cbd 100644 --- a/hypopg.c +++ b/hypopg.c @@ -8,7 +8,7 @@ * This program is open source, licensed under the PostgreSQL license. * For license terms, see the LICENSE file. * - * Copyright (C) 2015-2023: Julien Rouhaud + * Copyright (C) 2015-2024: Julien Rouhaud * *------------------------------------------------------------------------- */ diff --git a/hypopg_index.c b/hypopg_index.c index 1ad170a..613251d 100644 --- a/hypopg_index.c +++ b/hypopg_index.c @@ -8,7 +8,7 @@ * This program is open source, licensed under the PostgreSQL license. * For license terms, see the LICENSE file. * - * Copyright (C) 2015-2023: Julien Rouhaud + * Copyright (C) 2015-2024: Julien Rouhaud * *------------------------------------------------------------------------- */ diff --git a/import/hypopg_import.c b/import/hypopg_import.c index f698d5d..a877ef1 100644 --- a/import/hypopg_import.c +++ b/import/hypopg_import.c @@ -5,7 +5,7 @@ * This program is open source, licensed under the PostgreSQL license. * For license terms, see the LICENSE file. * - * Copyright (c) 2008-2023, PostgreSQL Global Development Group + * Copyright (c) 2008-2024, PostgreSQL Global Development Group * *------------------------------------------------------------------------- */ diff --git a/import/hypopg_import_index.c b/import/hypopg_import_index.c index 9afcaa5..af6122a 100644 --- a/import/hypopg_import_index.c +++ b/import/hypopg_import_index.c @@ -6,7 +6,7 @@ * This program is open source, licensed under the PostgreSQL license. * For license terms, see the LICENSE file. * - * Copyright (c) 2008-2023, PostgreSQL Global Development Group + * Copyright (c) 2008-2024, PostgreSQL Global Development Group * *------------------------------------------------------------------------- */ diff --git a/include/hypopg.h b/include/hypopg.h index 24a0090..60a4e42 100644 --- a/include/hypopg.h +++ b/include/hypopg.h @@ -5,7 +5,7 @@ * This program is open source, licensed under the PostgreSQL license. * For license terms, see the LICENSE file. * - * Copyright (C) 2015-2023: Julien Rouhaud + * Copyright (C) 2015-2024: Julien Rouhaud * *------------------------------------------------------------------------- */ diff --git a/include/hypopg_import.h b/include/hypopg_import.h index 46f88cd..5375c89 100644 --- a/include/hypopg_import.h +++ b/include/hypopg_import.h @@ -5,7 +5,7 @@ * This program is open source, licensed under the PostgreSQL license. * For license terms, see the LICENSE file. * - * Copyright (c) 2008-2023, PostgreSQL Global Development Group + * Copyright (c) 2008-2024, PostgreSQL Global Development Group * *------------------------------------------------------------------------- */ diff --git a/include/hypopg_import_index.h b/include/hypopg_import_index.h index b965731..47316f5 100644 --- a/include/hypopg_import_index.h +++ b/include/hypopg_import_index.h @@ -6,7 +6,7 @@ * This program is open source, licensed under the PostgreSQL license. * For license terms, see the LICENSE file. * - * Copyright (c) 2008-2023, PostgreSQL Global Development Group + * Copyright (c) 2008-2024, PostgreSQL Global Development Group * *------------------------------------------------------------------------- */ diff --git a/include/hypopg_index.h b/include/hypopg_index.h index 02c7abd..6e5f765 100644 --- a/include/hypopg_index.h +++ b/include/hypopg_index.h @@ -8,7 +8,7 @@ * This program is open source, licensed under the PostgreSQL license. * For license terms, see the LICENSE file. * - * Copyright (C) 2015-2023: Julien Rouhaud + * Copyright (C) 2015-2024: Julien Rouhaud * *------------------------------------------------------------------------- */