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

Commit a9a8f29

Browse files
committed
Merge branch 'master' into develop
* master: 1.21.1 Explicitly install test dependencies when building deb packages (#8523)
2 parents b76f53b + 58e583e commit a9a8f29

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Synapse 1.21.1 (2020-10-13)
2+
===========================
3+
4+
This release fixes a regression in v1.21.0 that prevented debian packages from being built.
5+
It is otherwise identical to v1.21.0.
6+
17
Synapse 1.21.0 (2020-10-12)
28
===========================
39

debian/build_virtualenv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ dh_virtualenv \
4242
--preinstall="mock" \
4343
--extra-pip-arg="--no-cache-dir" \
4444
--extra-pip-arg="--compile" \
45-
--extras="all,systemd"
45+
--extras="all,systemd,test"
4646

4747
PACKAGE_BUILD_DIR="debian/matrix-synapse-py3"
4848
VIRTUALENV_DIR="${PACKAGE_BUILD_DIR}${DH_VIRTUALENV_INSTALL_ROOT}/matrix-synapse"

debian/changelog

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
matrix-synapse-py3 (1.21.1) stable; urgency=medium
2+
3+
[ Synapse Packaging team ]
4+
* New synapse release 1.21.1.
5+
6+
[ Andrew Morgan ]
7+
* Explicitly install "test" python dependencies.
8+
9+
-- Synapse Packaging team <packages@matrix.org> Tue, 13 Oct 2020 10:24:13 +0100
10+
111
matrix-synapse-py3 (1.21.0) stable; urgency=medium
212

313
* New synapse release 1.21.0.

synapse/__init__.py

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

51-
__version__ = "1.21.0"
51+
__version__ = "1.21.1"
5252

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

0 commit comments

Comments
 (0)