Skip to content

Commit 40b194f

Browse files
authored
Prepare for 2.15.0 release (#1079)
1 parent c2e6c6e commit 40b194f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+66
-42
lines changed

AUTHORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ Babel is written and maintained by the Babel team and various contributors:
4949
- Arturas Moskvinas
5050
- Leonardo Pistone
5151
- Hyunjun Kim
52+
- Ronan Amicel
53+
- Christian Clauss
5254
- Best Olunusi
5355
- Teo
5456
- Ivan Koldakov

CHANGES.rst

Lines changed: 22 additions & 0 deletions

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2013-2023 by the Babel Team, see AUTHORS for more information.
1+
Copyright (c) 2013-2024 by the Babel Team, see AUTHORS for more information.
22

33
Redistribution and use in source and binary forms, with or without
44
modification, are permitted provided that the following conditions

babel/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
access to various locale display names, localized number and date
1313
formatting, etc.
1414
15-
:copyright: (c) 2013-2023 by the Babel Team.
15+
:copyright: (c) 2013-2024 by the Babel Team.
1616
:license: BSD, see LICENSE for more details.
1717
"""
1818

@@ -25,7 +25,7 @@
2525
parse_locale,
2626
)
2727

28-
__version__ = '2.14.0'
28+
__version__ = '2.15.0'
2929

3030
__all__ = [
3131
'Locale',

babel/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Core locale representation and locale data access.
66
7-
:copyright: (c) 2013-2023 by the Babel Team.
7+
:copyright: (c) 2013-2024 by the Babel Team.
88
:license: BSD, see LICENSE for more details.
99
"""
1010

babel/dates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* ``LC_ALL``, and
1212
* ``LANG``
1313
14-
:copyright: (c) 2013-2023 by the Babel Team.
14+
:copyright: (c) 2013-2024 by the Babel Team.
1515
:license: BSD, see LICENSE for more details.
1616
"""
1717

babel/lists.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* ``LC_ALL``, and
1111
* ``LANG``
1212
13-
:copyright: (c) 2015-2023 by the Babel Team.
13+
:copyright: (c) 2015-2024 by the Babel Team.
1414
:license: BSD, see LICENSE for more details.
1515
"""
1616
from __future__ import annotations

babel/localedata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
:note: The `Locale` class, which uses this module under the hood, provides a
88
more convenient interface for accessing the locale data.
99
10-
:copyright: (c) 2013-2023 by the Babel Team.
10+
:copyright: (c) 2013-2024 by the Babel Team.
1111
:license: BSD, see LICENSE for more details.
1212
"""
1313

babel/localtime/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Babel specific fork of tzlocal to determine the local timezone
66
of the system.
77
8-
:copyright: (c) 2013-2023 by the Babel Team.
8+
:copyright: (c) 2013-2024 by the Babel Team.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

babel/localtime/_fallback.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Emulated fallback local timezone when all else fails.
66
7-
:copyright: (c) 2013-2023 by the Babel Team.
7+
:copyright: (c) 2013-2024 by the Babel Team.
88
:license: BSD, see LICENSE for more details.
99
"""
1010

babel/messages/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Support for ``gettext`` message catalogs.
66
7-
:copyright: (c) 2013-2023 by the Babel Team.
7+
:copyright: (c) 2013-2024 by the Babel Team.
88
:license: BSD, see LICENSE for more details.
99
"""
1010

babel/messages/catalog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Data structures for message catalogs.
66
7-
:copyright: (c) 2013-2023 by the Babel Team.
7+
:copyright: (c) 2013-2024 by the Babel Team.
88
:license: BSD, see LICENSE for more details.
99
"""
1010
from __future__ import annotations

babel/messages/checkers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
:since: version 0.9
88
9-
:copyright: (c) 2013-2023 by the Babel Team.
9+
:copyright: (c) 2013-2024 by the Babel Team.
1010
:license: BSD, see LICENSE for more details.
1111
"""
1212
from __future__ import annotations

babel/messages/extract.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
The main entry points into the extraction functionality are the functions
1313
`extract_from_dir` and `extract_from_file`.
1414
15-
:copyright: (c) 2013-2023 by the Babel Team.
15+
:copyright: (c) 2013-2024 by the Babel Team.
1616
:license: BSD, see LICENSE for more details.
1717
"""
1818
from __future__ import annotations

babel/messages/frontend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Frontends for the message extraction functionality.
66
7-
:copyright: (c) 2013-2023 by the Babel Team.
7+
:copyright: (c) 2013-2024 by the Babel Team.
88
:license: BSD, see LICENSE for more details.
99
"""
1010

babel/messages/jslexer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
A simple JavaScript 1.5 lexer which is used for the JavaScript
66
extractor.
77
8-
:copyright: (c) 2013-2023 by the Babel Team.
8+
:copyright: (c) 2013-2024 by the Babel Team.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111
from __future__ import annotations

babel/messages/mofile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Writing of files in the ``gettext`` MO (machine object) format.
66
7-
:copyright: (c) 2013-2023 by the Babel Team.
7+
:copyright: (c) 2013-2024 by the Babel Team.
88
:license: BSD, see LICENSE for more details.
99
"""
1010
from __future__ import annotations

babel/messages/plurals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Plural form definitions.
66
7-
:copyright: (c) 2013-2023 by the Babel Team.
7+
:copyright: (c) 2013-2024 by the Babel Team.
88
:license: BSD, see LICENSE for more details.
99
"""
1010
from __future__ import annotations

babel/messages/pofile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Reading and writing of files in the ``gettext`` PO (portable object)
66
format.
77
8-
:copyright: (c) 2013-2023 by the Babel Team.
8+
:copyright: (c) 2013-2024 by the Babel Team.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111
from __future__ import annotations

babel/numbers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* ``LC_ALL``, and
1212
* ``LANG``
1313
14-
:copyright: (c) 2013-2023 by the Babel Team.
14+
:copyright: (c) 2013-2024 by the Babel Team.
1515
:license: BSD, see LICENSE for more details.
1616
"""
1717
# TODO:

babel/plural.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
CLDR Plural support. See UTS #35.
66
7-
:copyright: (c) 2013-2023 by the Babel Team.
7+
:copyright: (c) 2013-2024 by the Babel Team.
88
:license: BSD, see LICENSE for more details.
99
"""
1010
from __future__ import annotations

babel/support.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
.. note: the code in this module is not used by Babel itself
99
10-
:copyright: (c) 2013-2023 by the Babel Team.
10+
:copyright: (c) 2013-2024 by the Babel Team.
1111
:license: BSD, see LICENSE for more details.
1212
"""
1313
from __future__ import annotations

babel/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Various utility classes and functions.
66
7-
:copyright: (c) 2013-2023 by the Babel Team.
7+
:copyright: (c) 2013-2024 by the Babel Team.
88
:license: BSD, see LICENSE for more details.
99
"""
1010
from __future__ import annotations

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,16 @@
4444

4545
# General information about the project.
4646
project = 'Babel'
47-
copyright = '2023, The Babel Team'
47+
copyright = '2024, The Babel Team'
4848

4949
# The version info for the project you're documenting, acts as replacement for
5050
# |version| and |release|, also used in various other places throughout the
5151
# built documents.
5252
#
5353
# The short X.Y version.
54-
version = '2.14'
54+
version = '2.15'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '2.14.0'
56+
release = '2.15.0'
5757

5858
# The language for content autogenerated by Sphinx. Refer to documentation
5959
# for a list of supported languages.

scripts/dump_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
#
3-
# Copyright (C) 2007-2011 Edgewall Software, 2013-2023 the Babel team
3+
# Copyright (C) 2007-2011 Edgewall Software, 2013-2024 the Babel team
44
# All rights reserved.
55
#
66
# This software is licensed as described in the file LICENSE, which

scripts/dump_global.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
#
3-
# Copyright (C) 2007-2011 Edgewall Software, 2013-2023 the Babel team
3+
# Copyright (C) 2007-2011 Edgewall Software, 2013-2024 the Babel team
44
# All rights reserved.
55
#
66
# This software is licensed as described in the file LICENSE, which

scripts/import_cldr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
#
3-
# Copyright (C) 2007-2011 Edgewall Software, 2013-2023 the Babel team
3+
# Copyright (C) 2007-2011 Edgewall Software, 2013-2024 the Babel team
44
# All rights reserved.
55
#
66
# This software is licensed as described in the file LICENSE, which

tests/messages/test_catalog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2007-2011 Edgewall Software, 2013-2023 the Babel team
2+
# Copyright (C) 2007-2011 Edgewall Software, 2013-2024 the Babel team
33
# All rights reserved.
44
#
55
# This software is licensed as described in the file LICENSE, which

tests/messages/test_checkers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2007-2011 Edgewall Software, 2013-2023 the Babel team
2+
# Copyright (C) 2007-2011 Edgewall Software, 2013-2024 the Babel team
33
# All rights reserved.
44
#
55
# This software is licensed as described in the file LICENSE, which

tests/messages/test_extract.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2007-2011 Edgewall Software, 2013-2023 the Babel team
2+
# Copyright (C) 2007-2011 Edgewall Software, 2013-2024 the Babel team
33
# All rights reserved.
44
#
55
# This software is licensed as described in the file LICENSE, which

tests/messages/test_frontend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2007-2011 Edgewall Software, 2013-2023 the Babel team
2+
# Copyright (C) 2007-2011 Edgewall Software, 2013-2024 the Babel team
33
# All rights reserved.
44
#
55
# This software is licensed as described in the file LICENSE, which

tests/messages/test_mofile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2007-2011 Edgewall Software, 2013-2023 the Babel team
2+
# Copyright (C) 2007-2011 Edgewall Software, 2013-2024 the Babel team
33
# All rights reserved.
44
#
55
# This software is licensed as described in the file LICENSE, which

tests/messages/test_plurals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2007-2011 Edgewall Software, 2013-2023 the Babel team
2+
# Copyright (C) 2007-2011 Edgewall Software, 2013-2024 the Babel team
33
# All rights reserved.
44
#
55
# This software is licensed as described in the file LICENSE, which

tests/messages/test_pofile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2007-2011 Edgewall Software, 2013-2023 the Babel team
2+
# Copyright (C) 2007-2011 Edgewall Software, 2013-2024 the Babel team
33
# All rights reserved.
44
#
55
# This software is licensed as described in the file LICENSE, which

tests/test_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2007-2011 Edgewall Software, 2013-2023 the Babel team
2+
# Copyright (C) 2007-2011 Edgewall Software, 2013-2024 the Babel team
33
# All rights reserved.
44
#
55
# This software is licensed as described in the file LICENSE, which

tests/test_dates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2007-2011 Edgewall Software, 2013-2023 the Babel team
2+
# Copyright (C) 2007-2011 Edgewall Software, 2013-2024 the Babel team
33
# All rights reserved.
44
#
55
# This software is licensed as described in the file LICENSE, which

tests/test_localedata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2007-2011 Edgewall Software, 2013-2023 the Babel team
2+
# Copyright (C) 2007-2011 Edgewall Software, 2013-2024 the Babel team
33
# All rights reserved.
44
#
55
# This software is licensed as described in the file LICENSE, which

tests/test_numbers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2007-2011 Edgewall Software, 2013-2023 the Babel team
2+
# Copyright (C) 2007-2011 Edgewall Software, 2013-2024 the Babel team
33
# All rights reserved.
44
#
55
# This software is licensed as described in the file LICENSE, which

tests/test_plural.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2007-2011 Edgewall Software, 2013-2023 the Babel team
2+
# Copyright (C) 2007-2011 Edgewall Software, 2013-2024 the Babel team
33
# All rights reserved.
44
#
55
# This software is licensed as described in the file LICENSE, which

tests/test_support.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2007-2011 Edgewall Software, 2013-2023 the Babel team
2+
# Copyright (C) 2007-2011 Edgewall Software, 2013-2024 the Babel team
33
# All rights reserved.
44
#
55
# This software is licensed as described in the file LICENSE, which

tests/test_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2007-2011 Edgewall Software, 2013-2023 the Babel team
2+
# Copyright (C) 2007-2011 Edgewall Software, 2013-2024 the Babel team
33
# All rights reserved.
44
#
55
# This software is licensed as described in the file LICENSE, which

0 commit comments

Comments
 (0)