Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit a61b13c

Browse files
committed
Merge branch 'master' into develop
2 parents e3bc461 + 0644ac0 commit a61b13c

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

CHANGES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
Synapse 1.33.0 (2021-05-05)
2+
===========================
3+
4+
Features
5+
--------
6+
7+
- Build Debian packages for Ubuntu 21.04 (Hirsute Hippo). ([\#9909](https://github.com/matrix-org/synapse/issues/9909))
8+
9+
110
Synapse 1.33.0rc2 (2021-04-29)
211
==============================
312

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
matrix-synapse-py3 (1.33.0) stable; urgency=medium
2+
3+
* New synapse release 1.33.0.
4+
5+
-- Synapse Packaging team <[email protected]> Wed, 05 May 2021 14:15:27 +0100
6+
17
matrix-synapse-py3 (1.32.2) stable; urgency=medium
28

39
* New synapse release 1.32.2.

scripts-dev/build_debian_packages

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@ DISTS = (
2121
"debian:buster",
2222
"debian:bullseye",
2323
"debian:sid",
24-
"ubuntu:bionic",
25-
"ubuntu:focal",
26-
"ubuntu:groovy",
24+
"ubuntu:bionic", # 18.04 LTS (our EOL forced by Py36 on 2021-12-23)
25+
"ubuntu:focal", # 20.04 LTS (our EOL forced by Py38 on 2024-10-14)
26+
"ubuntu:groovy", # 20.10 (EOL 2021-07-07)
27+
"ubuntu:hirsute", # 21.04 (EOL 2022-01-05)
2728
)
2829

2930
DESC = '''\

synapse/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
except ImportError:
4848
pass
4949

50-
__version__ = "1.33.0rc2"
50+
__version__ = "1.33.0"
5151

5252
if bool(os.environ.get("SYNAPSE_TEST_PATCH_LOG_CONTEXTS", False)):
5353
# We import here so that we don't have to install a bunch of deps when

0 commit comments

Comments
 (0)