summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAarni Koskela <akx@iki.fi>2022-06-16 10:12:56 +0300
committerAarni Koskela <akx@iki.fi>2022-06-16 10:12:56 +0300
commit558f26c8a9451c012e1b64be34f0b14815816127 (patch)
tree5980a6308c24af910215949024af6c0332a88f98
parenta75ac3cb17ede9c0b5bb762ff620795beb1873ee (diff)
parent79f3d333037a9f486718d4a61ae3c03622ebde23 (diff)
downloadbabel-558f26c8a9451c012e1b64be34f0b14815816127.tar.gz
Merge branch '2.10-maint'
-rw-r--r--.github/workflows/build.yml2
-rw-r--r--.github/workflows/test.yml8
-rw-r--r--CHANGES.rst10
-rw-r--r--babel/__init__.py2
4 files changed, 19 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 7c6a990..0593507 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -3,9 +3,11 @@ name: CI
push:
branches:
- master
+ - '*-maint'
pull_request:
branches:
- master
+ - '*-maint'
jobs:
Build:
runs-on: ubuntu-20.04
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index e346f04..4989712 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -2,9 +2,13 @@ name: Test
on:
push:
- branches: [ master ]
+ branches:
+ - master
+ - '*-maint'
pull_request:
- branches: [ master ]
+ branches:
+ - master
+ - '*-maint'
jobs:
test:
diff --git a/CHANGES.rst b/CHANGES.rst
index 8ffd673..d3b9608 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,6 +1,16 @@
Babel Changelog
===============
+Version 2.10.3
+--------------
+
+This is a bugfix release for Babel 2.10.2, which was mistakenly packaged with outdated locale data.
+
+Thanks to Michał Górny for pointing this out and Jun Omae for verifying.
+
+This and future Babel PyPI packages will be built by a more automated process,
+which should make problems like this less likely to occur.
+
Version 2.10.2
--------------
diff --git a/babel/__init__.py b/babel/__init__.py
index 3d5b854..081178a 100644
--- a/babel/__init__.py
+++ b/babel/__init__.py
@@ -20,4 +20,4 @@ from babel.core import UnknownLocaleError, Locale, default_locale, \
negotiate_locale, parse_locale, get_locale_identifier
-__version__ = '2.10.2'
+__version__ = '2.10.3'