Skip to content

Commit 6e1a46d

Browse files
committed
Update copyright year.
1 parent 8943fd0 commit 6e1a46d

14 files changed

+16
-16
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Portions Copyright (c) 2015-2023, PostgreSQL GLobal Development Group
1+
Portions Copyright (c) 2015-2024, PostgreSQL GLobal Development Group
22

33
Portions Copyright (c) 1994, The Regents of the University of California
44

debian/copyright

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Portions Copyright (c) 2015-2023, PostgreSQL GLobal Development Group
1+
Portions Copyright (c) 2015-2024, PostgreSQL GLobal Development Group
22

33
Portions Copyright (c) 1994, The Regents of the University of California
44

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050

5151
# General information about the project.
5252
project = 'HypoPG'
53-
copyright = '2015-2023, Julien Rouhaud'
53+
copyright = '2015-2024, Julien Rouhaud'
5454
author = 'Julien Rouhaud'
5555

5656
# The version info for the project you're documenting, acts as replacement for

hypopg--1.3.1--1.4.0.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-- This program is open source, licensed under the PostgreSQL License.
22
-- For license terms, see the LICENSE file.
33
--
4-
-- Copyright (C) 2015-2023: Julien Rouhaud
4+
-- Copyright (C) 2015-2024: Julien Rouhaud
55

66
-- complain if script is sourced in psql, rather than via CREATE EXTENSION
77
\echo Use "ALTER EXTENSION hypopg" to load this file. \quit
@@ -47,4 +47,4 @@ AS
4747
SELECT hl.*, true AS is_hypo
4848
FROM hypopg_hidden_indexes() hi
4949
JOIN hypopg_list_indexes hl on hl.indexrelid = hi.indexid
50-
ORDER BY index_name;
50+
ORDER BY index_name;

hypopg--1.3.1.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-- This program is open source, licensed under the PostgreSQL License.
22
-- For license terms, see the LICENSE file.
33
--
4-
-- Copyright (C) 2015-2023: Julien Rouhaud
4+
-- Copyright (C) 2015-2024: Julien Rouhaud
55

66
-- complain if script is sourced in psql, rather than via CREATE EXTENSION
77
\echo Use "CREATE EXTENSION hypopg" to load this file. \quit

hypopg--1.4.0.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-- This program is open source, licensed under the PostgreSQL License.
22
-- For license terms, see the LICENSE file.
33
--
4-
-- Copyright (C) 2015-2023: Julien Rouhaud
4+
-- Copyright (C) 2015-2024: Julien Rouhaud
55

66
-- complain if script is sourced in psql, rather than via CREATE EXTENSION
77
\echo Use "CREATE EXTENSION hypopg" to load this file. \quit
@@ -102,4 +102,4 @@ AS
102102
SELECT hl.*, true AS is_hypo
103103
FROM hypopg_hidden_indexes() hi
104104
JOIN hypopg_list_indexes hl on hl.indexrelid = hi.indexid
105-
ORDER BY index_name;
105+
ORDER BY index_name;

hypopg.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* This program is open source, licensed under the PostgreSQL license.
99
* For license terms, see the LICENSE file.
1010
*
11-
* Copyright (C) 2015-2023: Julien Rouhaud
11+
* Copyright (C) 2015-2024: Julien Rouhaud
1212
*
1313
*-------------------------------------------------------------------------
1414
*/

hypopg_index.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* This program is open source, licensed under the PostgreSQL license.
99
* For license terms, see the LICENSE file.
1010
*
11-
* Copyright (C) 2015-2023: Julien Rouhaud
11+
* Copyright (C) 2015-2024: Julien Rouhaud
1212
*
1313
*-------------------------------------------------------------------------
1414
*/

import/hypopg_import.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* This program is open source, licensed under the PostgreSQL license.
66
* For license terms, see the LICENSE file.
77
*
8-
* Copyright (c) 2008-2023, PostgreSQL Global Development Group
8+
* Copyright (c) 2008-2024, PostgreSQL Global Development Group
99
*
1010
*-------------------------------------------------------------------------
1111
*/

import/hypopg_import_index.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* This program is open source, licensed under the PostgreSQL license.
77
* For license terms, see the LICENSE file.
88
*
9-
* Copyright (c) 2008-2023, PostgreSQL Global Development Group
9+
* Copyright (c) 2008-2024, PostgreSQL Global Development Group
1010
*
1111
*-------------------------------------------------------------------------
1212
*/

include/hypopg.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* This program is open source, licensed under the PostgreSQL license.
66
* For license terms, see the LICENSE file.
77
*
8-
* Copyright (C) 2015-2023: Julien Rouhaud
8+
* Copyright (C) 2015-2024: Julien Rouhaud
99
*
1010
*-------------------------------------------------------------------------
1111
*/

include/hypopg_import.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* This program is open source, licensed under the PostgreSQL license.
66
* For license terms, see the LICENSE file.
77
*
8-
* Copyright (c) 2008-2023, PostgreSQL Global Development Group
8+
* Copyright (c) 2008-2024, PostgreSQL Global Development Group
99
*
1010
*-------------------------------------------------------------------------
1111
*/

include/hypopg_import_index.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* This program is open source, licensed under the PostgreSQL license.
77
* For license terms, see the LICENSE file.
88
*
9-
* Copyright (c) 2008-2023, PostgreSQL Global Development Group
9+
* Copyright (c) 2008-2024, PostgreSQL Global Development Group
1010
*
1111
*-------------------------------------------------------------------------
1212
*/

include/hypopg_index.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* This program is open source, licensed under the PostgreSQL license.
99
* For license terms, see the LICENSE file.
1010
*
11-
* Copyright (C) 2015-2023: Julien Rouhaud
11+
* Copyright (C) 2015-2024: Julien Rouhaud
1212
*
1313
*-------------------------------------------------------------------------
1414
*/

0 commit comments

Comments
 (0)