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

Commit

Permalink
Merge tag 'v1.12.2'
Browse files Browse the repository at this point in the history
Synapse 1.12.2 (2020-04-02)
===========================

This release fixes [an
issue](#7208) with building the
debian packages.

No other significant changes since 1.12.1.
  • Loading branch information
richvdh committed Apr 3, 2020
2 parents 0122ef1 + f7d6e84 commit cb40b0c
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Synapse 1.12.2 (2020-04-02)
===========================

This release works around [an
issue](https://github.com/matrix-org/synapse/issues/7208) with building the
debian packages.

No other significant changes since 1.12.1.


Synapse 1.12.1 (2020-04-02)
===========================

Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
matrix-synapse-py3 (1.12.2) stable; urgency=medium

* New synapse release 1.12.2.

-- Synapse Packaging team <[email protected]> Mon, 02 Apr 2020 19:02:17 +0000

matrix-synapse-py3 (1.12.1) stable; urgency=medium

* New synapse release 1.12.1.
Expand Down
2 changes: 1 addition & 1 deletion synapse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
except ImportError:
pass

__version__ = "1.12.1"
__version__ = "1.12.2"

if bool(os.environ.get("SYNAPSE_TEST_PATCH_LOG_CONTEXTS", False)):
# We import here so that we don't have to install a bunch of deps when
Expand Down
4 changes: 3 additions & 1 deletion synapse/python_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@
"pyasn1-modules>=0.0.7",
"daemonize>=2.3.1",
"bcrypt>=3.1.0",
"pillow>=4.3.0",
# Pillow 7.1.0 causes the following issue on debian buster:
# https://github.com/python-pillow/Pillow/issues/2377
"pillow>=4.3.0,<7.1.0",
"sortedcontainers>=1.4.4",
"pymacaroons>=0.13.0",
"msgpack>=0.5.2",
Expand Down

0 comments on commit cb40b0c

Please sign in to comment.