10000 Update the year of the copyright · PyGreSQL/PyGreSQL@683a636 · GitHub
[go: up one dir, main page]

Skip to content

Commit 683a636

Browse files
committed
Update the year of the copyright
1 parent 8ec45a2 commit 683a636

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Copyright (c) 1995, Pascal Andre
66

77
Further modifications copyright (c) 1997-2008 by D'Arcy J.M. Cain
88

9-
Further modifications copyright (c) 2009-2023 by the PyGreSQL Development Team
9+
Further modifications copyright (c) 2009-2024 by the PyGreSQL Development Team
1010

1111
PyGreSQL is released under the PostgreSQL License, a liberal Open Source
1212
license, similar to the BSD or MIT licenses:

docs/about.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ powerful PostgreSQL features from Python.
88

99
| This software is copyright © 1995, Pascal Andre.
1010
| Further modifications are copyright © 1997-2008 by D'Arcy J.M. Cain.
11-
| Further modifications are copyright © 2009-2023 by the PyGreSQL team.
11+
| Further modifications are copyright © 2009-2024 by the PyGreSQL team.
1212
| For licensing details, see the full :doc:`copyright`.
1313
1414
**PostgreSQL** is a highly scalable, SQL compliant, open source

docs/conf.py

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

99
project = 'PyGreSQL'
1010
author = 'The PyGreSQL team'
11-
copyright = '2023, ' + author
11+
copyright = '2024, ' + author
1212

1313
def project_version():
1414
with open('../pyproject.toml') as f:

docs/copyright.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Copyright (c) 1995, Pascal Andre
1010
Further modifications copyright (c) 1997-2008 by D'Arcy J.M. Cain
1111
(darcy@PyGreSQL.org)
1212

13-
Further modifications copyright (c) 2009-2023 by the PyGreSQL team.
13+
Further modifications copyright (c) 2009-2024 by the PyGreSQL team.
1414

1515
Permission to use, copy, modify, and distribute this software and its
1616
documentation for any purpose, without fee, and without a written agreement

ext/pgconn.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* The connection object - this file is part a of the C extension module.
55
*
6-
* Copyright (c) 2023 by the PyGreSQL Development Team
6+
* Copyright (c) 2024 by the PyGreSQL Development Team
77
*
88
* Please see the LICENSE.TXT file for specific restrictions.
99
*/

ext/pginternal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Internal functions - this file is part a of the C extension module.
55
*
6-
* Copyright (c) 2023 by the PyGreSQL Development Team
6+
* Copyright (c) 2024 by the PyGreSQL Development Team
77
*
88
* Please see the LICENSE.TXT file for specific restrictions.
99
*/

ext/pglarge.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Large object support - this file is part a of the C extension module.
55
*
6-
* Copyright (c) 2023 by the PyGreSQL Development Team
6+
* Copyright (c) 2024 by the PyGreSQL Development Team
77
*
88
* Please see the LICENSE.TXT file for specific restrictions.
99
*/

ext/pgmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This is the main file for the C extension module.
55
*
6-
* Copyright (c) 2023 by the PyGreSQL Development Team
6+
* Copyright (c) 2024 by the PyGreSQL Development Team
77
*
88
* Please see the LICENSE.TXT file for specific restrictions.
99
*/

ext/pgnotice.c

Lines changed: 1 addition & 1 deletion
341A
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* The notice object - this file is part a of the C extension module.
55
*
6-
* Copyright (c) 2023 by the PyGreSQL Development Team
6+
* Copyright (c) 2024 by the PyGreSQL Development Team
77
*
88
* Please see the LICENSE.TXT file for specific restrictions.
99
*/

ext/pgquery.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* The query object - this file is part a of the C extension module.
55
*
6-
* Copyright (c) 2023 by the PyGreSQL Development Team
6+
* Copyright (c) 2024 by the PyGreSQL Development Team
77
*
88
* Please see the LICENSE.TXT file for specific restrictions.
99
*/

ext/pgsource.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* The source object - this file is part a of the C extension module.
55
*
6-
* Copyright (c) 2023 by the PyGreSQL Development Team
6+
* Copyright (c) 2024 by the PyGreSQL Development Team
77
*
88
* Please see the LICENSE.TXT file for specific restrictions.
99
*/

pg/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# This file contains the classic pg module.
66
#
7-
# Copyright (c) 2023 by the PyGreSQL Development Team
7+
# Copyright (c) 2024 by the PyGreSQL Development Team
88
#
99
# The notification handler is based on pgnotify which is
1010
# Copyright (c) 2001 Ng Pheng Siong. All rights reserved.

pgdb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# This file contains the DB-API 2 compatible pgdb module.
66
#
7-
# Copyright (c) 2023 by the PyGreSQL Development Team
7+
# Copyright (c) 2024 by the PyGreSQL Development Team
88
#
99
# Please see the LICENSE.TXT file for specific restrictions.
1010

0 commit comments

Comments
 (0)
0