Skip to content

Commit 558f26c

Browse files
committed
Merge branch '2.10-maint'
2 parents a75ac3c + 79f3d33 commit 558f26c

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ name: CI
33
push:
44
branches:
55
- master
6+
- '*-maint'
67
pull_request:
78
branches:
89
- master
10+
- '*-maint'
911
jobs:
1012
Build:
1113
runs-on: ubuntu-20.04

.github/workflows/test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@ name: Test
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches:
6+
- master
7+
- '*-maint'
68
pull_request:
7-
branches: [ master ]
9+
branches:
10+
- master
11+
- '*-maint'
812

913
jobs:
1014
test:

CHANGES.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
Babel Changelog
22
===============
33

4+
Version 2.10.3
5+
--------------
6+
7+
This is a bugfix release for Babel 2.10.2, which was mistakenly packaged with outdated locale data.
8+
9+
Thanks to Michał Górny for pointing this out and Jun Omae for verifying.
10+
11+
This and future Babel PyPI packages will be built by a more automated process,
12+
which should make problems like this less likely to occur.
13+
414
Version 2.10.2
515
--------------
616

babel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
negotiate_locale, parse_locale, get_locale_identifier
2121

2222

23-
__version__ = '2.10.2'
23+
__version__ = '2.10.3'

0 commit comments

Comments
 (0)