summaryrefslogtreecommitdiff
path: root/babel
diff options
context:
space:
mode:
Diffstat (limited to 'babel')
-rw-r--r--babel/__init__.py4
-rw-r--r--babel/core.py2
-rw-r--r--babel/dates.py2
-rw-r--r--babel/lists.py2
-rw-r--r--babel/localedata.py2
-rw-r--r--babel/localtime/__init__.py2
-rw-r--r--babel/messages/__init__.py2
-rw-r--r--babel/messages/catalog.py2
-rw-r--r--babel/messages/checkers.py2
-rw-r--r--babel/messages/extract.py2
-rw-r--r--babel/messages/frontend.py2
-rw-r--r--babel/messages/jslexer.py2
-rw-r--r--babel/messages/mofile.py2
-rw-r--r--babel/messages/plurals.py2
-rw-r--r--babel/messages/pofile.py2
-rw-r--r--babel/numbers.py2
-rw-r--r--babel/plural.py2
-rw-r--r--babel/support.py2
-rw-r--r--babel/util.py2
19 files changed, 20 insertions, 20 deletions
diff --git a/babel/__init__.py b/babel/__init__.py
index c10a8bd..cbcb4fb 100644
--- a/babel/__init__.py
+++ b/babel/__init__.py
@@ -13,7 +13,7 @@
access to various locale display names, localized number and date
formatting, etc.
- :copyright: (c) 2013-2019 by the Babel Team.
+ :copyright: (c) 2013-2020 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
@@ -21,4 +21,4 @@ from babel.core import UnknownLocaleError, Locale, default_locale, \
negotiate_locale, parse_locale, get_locale_identifier
-__version__ = '2.8.0'
+__version__ = '2.8.1'
diff --git a/babel/core.py b/babel/core.py
index a80807a..a0c35b4 100644
--- a/babel/core.py
+++ b/babel/core.py
@@ -5,7 +5,7 @@
Core locale representation and locale data access.
- :copyright: (c) 2013-2019 by the Babel Team.
+ :copyright: (c) 2013-2020 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
diff --git a/babel/dates.py b/babel/dates.py
index 1775029..d62d00b 100644
--- a/babel/dates.py
+++ b/babel/dates.py
@@ -12,7 +12,7 @@
* ``LC_ALL``, and
* ``LANG``
- :copyright: (c) 2013-2019 by the Babel Team.
+ :copyright: (c) 2013-2020 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
diff --git a/babel/lists.py b/babel/lists.py
index ab5a24c..e0bd7ed 100644
--- a/babel/lists.py
+++ b/babel/lists.py
@@ -11,7 +11,7 @@
* ``LC_ALL``, and
* ``LANG``
- :copyright: (c) 2015-2019 by the Babel Team.
+ :copyright: (c) 2015-2020 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
diff --git a/babel/localedata.py b/babel/localedata.py
index e012abb..f4771d1 100644
--- a/babel/localedata.py
+++ b/babel/localedata.py
@@ -8,7 +8,7 @@
:note: The `Locale` class, which uses this module under the hood, provides a
more convenient interface for accessing the locale data.
- :copyright: (c) 2013-2019 by the Babel Team.
+ :copyright: (c) 2013-2020 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
diff --git a/babel/localtime/__init__.py b/babel/localtime/__init__.py
index aefd8a3..8c9203a 100644
--- a/babel/localtime/__init__.py
+++ b/babel/localtime/__init__.py
@@ -6,7 +6,7 @@
Babel specific fork of tzlocal to determine the local timezone
of the system.
- :copyright: (c) 2013-2019 by the Babel Team.
+ :copyright: (c) 2013-2020 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
diff --git a/babel/messages/__init__.py b/babel/messages/__init__.py
index 5b69675..77c7962 100644
--- a/babel/messages/__init__.py
+++ b/babel/messages/__init__.py
@@ -5,7 +5,7 @@
Support for ``gettext`` message catalogs.
- :copyright: (c) 2013-2019 by the Babel Team.
+ :copyright: (c) 2013-2020 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
diff --git a/babel/messages/catalog.py b/babel/messages/catalog.py
index ed9e9a0..af1b657 100644
--- a/babel/messages/catalog.py
+++ b/babel/messages/catalog.py
@@ -5,7 +5,7 @@
Data structures for message catalogs.
- :copyright: (c) 2013-2019 by the Babel Team.
+ :copyright: (c) 2013-2020 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
diff --git a/babel/messages/checkers.py b/babel/messages/checkers.py
index 8c1effa..29add9f 100644
--- a/babel/messages/checkers.py
+++ b/babel/messages/checkers.py
@@ -7,7 +7,7 @@
:since: version 0.9
- :copyright: (c) 2013-2019 by the Babel Team.
+ :copyright: (c) 2013-2020 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
diff --git a/babel/messages/extract.py b/babel/messages/extract.py
index e7d7ad7..8f53fa2 100644
--- a/babel/messages/extract.py
+++ b/babel/messages/extract.py
@@ -13,7 +13,7 @@
The main entry points into the extraction functionality are the functions
`extract_from_dir` and `extract_from_file`.
- :copyright: (c) 2013-2019 by the Babel Team.
+ :copyright: (c) 2013-2020 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
diff --git a/babel/messages/frontend.py b/babel/messages/frontend.py
index 4756055..0b65a7c 100644
--- a/babel/messages/frontend.py
+++ b/babel/messages/frontend.py
@@ -5,7 +5,7 @@
Frontends for the message extraction functionality.
- :copyright: (c) 2013-2019 by the Babel Team.
+ :copyright: (c) 2013-2020 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
from __future__ import print_function
diff --git a/babel/messages/jslexer.py b/babel/messages/jslexer.py
index ace0b47..f56c80d 100644
--- a/babel/messages/jslexer.py
+++ b/babel/messages/jslexer.py
@@ -6,7 +6,7 @@
A simple JavaScript 1.5 lexer which is used for the JavaScript
extractor.
- :copyright: (c) 2013-2019 by the Babel Team.
+ :copyright: (c) 2013-2020 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
from collections import namedtuple
diff --git a/babel/messages/mofile.py b/babel/messages/mofile.py
index dfd923d..1ab3e4e 100644
--- a/babel/messages/mofile.py
+++ b/babel/messages/mofile.py
@@ -5,7 +5,7 @@
Writing of files in the ``gettext`` MO (machine object) format.
- :copyright: (c) 2013-2019 by the Babel Team.
+ :copyright: (c) 2013-2020 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
diff --git a/babel/messages/plurals.py b/babel/messages/plurals.py
index 8123458..4755cfc 100644
--- a/babel/messages/plurals.py
+++ b/babel/messages/plurals.py
@@ -5,7 +5,7 @@
Plural form definitions.
- :copyright: (c) 2013-2019 by the Babel Team.
+ :copyright: (c) 2013-2020 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
diff --git a/babel/messages/pofile.py b/babel/messages/pofile.py
index b86dd40..b8cb469 100644
--- a/babel/messages/pofile.py
+++ b/babel/messages/pofile.py
@@ -6,7 +6,7 @@
Reading and writing of files in the ``gettext`` PO (portable object)
format.
- :copyright: (c) 2013-2019 by the Babel Team.
+ :copyright: (c) 2013-2020 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
diff --git a/babel/numbers.py b/babel/numbers.py
index bbc5e21..0303f05 100644
--- a/babel/numbers.py
+++ b/babel/numbers.py
@@ -12,7 +12,7 @@
* ``LC_ALL``, and
* ``LANG``
- :copyright: (c) 2013-2019 by the Babel Team.
+ :copyright: (c) 2013-2020 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
# TODO:
diff --git a/babel/plural.py b/babel/plural.py
index 1e2b273..3c9a3e6 100644
--- a/babel/plural.py
+++ b/babel/plural.py
@@ -5,7 +5,7 @@
CLDR Plural support. See UTS #35.
- :copyright: (c) 2013-2019 by the Babel Team.
+ :copyright: (c) 2013-2020 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
import re
diff --git a/babel/support.py b/babel/support.py
index 8d905ed..d6fc56c 100644
--- a/babel/support.py
+++ b/babel/support.py
@@ -8,7 +8,7 @@
.. note: the code in this module is not used by Babel itself
- :copyright: (c) 2013-2019 by the Babel Team.
+ :copyright: (c) 2013-2020 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""
diff --git a/babel/util.py b/babel/util.py
index c371bad..a5d40c5 100644
--- a/babel/util.py
+++ b/babel/util.py
@@ -5,7 +5,7 @@
Various utility classes and functions.
- :copyright: (c) 2013-2019 by the Babel Team.
+ :copyright: (c) 2013-2020 by the Babel Team.
:license: BSD, see LICENSE for more details.
"""