# HG changeset patch # User Raphaël Gomès # Date 1644936764 -3600 # Node ID a1538c05d855d4752ddbf38466dd66026971319c # Parent 090346b095fb555d6f7f8ad2f6778ba6723eddf5 copyright: it's 2022 Differential Revision: https://phab.mercurial-scm.org/D12183 diff -r 090346b095fb -r a1538c05d855 contrib/packaging/debian/copyright --- a/contrib/packaging/debian/copyright Mon Feb 14 19:03:22 2022 +0100 +++ b/contrib/packaging/debian/copyright Tue Feb 15 15:52:44 2022 +0100 @@ -3,7 +3,7 @@ Source: https://www.mercurial-scm.org/ Files: * -Copyright: 2005-2021, Olivia Mackall and others. +Copyright: 2005-2022, Olivia Mackall and others. License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public diff -r 090346b095fb -r a1538c05d855 contrib/packaging/inno/mercurial.iss --- a/contrib/packaging/inno/mercurial.iss Mon Feb 14 19:03:22 2022 +0100 +++ b/contrib/packaging/inno/mercurial.iss Tue Feb 15 15:52:44 2022 +0100 @@ -6,7 +6,7 @@ #endif [Setup] -AppCopyright=Copyright 2005-2021 Olivia Mackall and others +AppCopyright=Copyright 2005-2022 Olivia Mackall and others AppName=Mercurial AppVersion={#VERSION} OutputBaseFilename=Mercurial-{#VERSION}{#SUFFIX} @@ -29,7 +29,7 @@ DefaultDirName={pf}\Mercurial SourceDir=stage VersionInfoDescription=Mercurial distributed SCM (version {#VERSION}) -VersionInfoCopyright=Copyright 2005-2021 Olivia Mackall and others +VersionInfoCopyright=Copyright 2005-2022 Olivia Mackall and others VersionInfoCompany=Olivia Mackall and others VersionInfoVersion={#QUAD_VERSION} InternalCompressLevel=max diff -r 090346b095fb -r a1538c05d855 contrib/win32/ReadMe.html --- a/contrib/win32/ReadMe.html Mon Feb 14 19:03:22 2022 +0100 +++ b/contrib/win32/ReadMe.html Tue Feb 15 15:52:44 2022 +0100 @@ -140,7 +140,7 @@

- Mercurial is Copyright 2005-2021 Olivia Mackall and others. + Mercurial is Copyright 2005-2022 Olivia Mackall and others.

diff -r 090346b095fb -r a1538c05d855 mercurial/commands.py --- a/mercurial/commands.py Mon Feb 14 19:03:22 2022 +0100 +++ b/mercurial/commands.py Tue Feb 15 15:52:44 2022 +0100 @@ -7928,7 +7928,7 @@ ) license = _( b"(see https://mercurial-scm.org for more information)\n" - b"\nCopyright (C) 2005-2021 Olivia Mackall and others\n" + b"\nCopyright (C) 2005-2022 Olivia Mackall and others\n" b"This is free software; see the source for copying conditions. " b"There is NO\nwarranty; " b"not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" diff -r 090346b095fb -r a1538c05d855 mercurial/helptext/hg.1.txt --- a/mercurial/helptext/hg.1.txt Mon Feb 14 19:03:22 2022 +0100 +++ b/mercurial/helptext/hg.1.txt Tue Feb 15 15:52:44 2022 +0100 @@ -112,7 +112,7 @@ Copying """"""" -Copyright (C) 2005-2021 Olivia Mackall. +Copyright (C) 2005-2022 Olivia Mackall. Free use of this software is granted under the terms of the GNU General Public License version 2 or any later version. diff -r 090346b095fb -r a1538c05d855 mercurial/helptext/hgignore.5.txt --- a/mercurial/helptext/hgignore.5.txt Mon Feb 14 19:03:22 2022 +0100 +++ b/mercurial/helptext/hgignore.5.txt Tue Feb 15 15:52:44 2022 +0100 @@ -26,7 +26,7 @@ Copying ======= This manual page is copyright 2006 Vadim Gelfer. -Mercurial is copyright 2005-2021 Olivia Mackall. +Mercurial is copyright 2005-2022 Olivia Mackall. Free use of this software is granted under the terms of the GNU General Public License version 2 or any later version. diff -r 090346b095fb -r a1538c05d855 mercurial/helptext/hgrc.5.txt --- a/mercurial/helptext/hgrc.5.txt Mon Feb 14 19:03:22 2022 +0100 +++ b/mercurial/helptext/hgrc.5.txt Tue Feb 15 15:52:44 2022 +0100 @@ -34,7 +34,7 @@ Copying ======= This manual page is copyright 2005 Bryan O'Sullivan. -Mercurial is copyright 2005-2021 Olivia Mackall. +Mercurial is copyright 2005-2022 Olivia Mackall. Free use of this software is granted under the terms of the GNU General Public License version 2 or any later version. diff -r 090346b095fb -r a1538c05d855 mercurial/utils/urlutil.py --- a/mercurial/utils/urlutil.py Mon Feb 14 19:03:22 2022 +0100 +++ b/mercurial/utils/urlutil.py Tue Feb 15 15:52:44 2022 +0100 @@ -1,6 +1,6 @@ # utils.urlutil - code related to [paths] management # -# Copyright 2005-2021 Olivia Mackall and others +# Copyright 2005-2022 Olivia Mackall and others # # This software may be used and distributed according to the terms of the # GNU General Public License version 2 or any later version. diff -r 090346b095fb -r a1538c05d855 setup.py --- a/setup.py Mon Feb 14 19:03:22 2022 +0100 +++ b/setup.py Tue Feb 15 15:52:44 2022 +0100 @@ -1722,7 +1722,7 @@ extra['console'] = [ { 'script': 'hg', - 'copyright': 'Copyright (C) 2005-2021 Olivia Mackall and others', + 'copyright': 'Copyright (C) 2005-2022 Olivia Mackall and others', 'product_version': version, } ]