Merge tag 'v0.32.1'

Synapse 0.32.1 (2018-07-06)
===========================

Bugfixes
--------

- Add explicit dependency on netaddr ([#3488](https://github.com/matrix-org/synapse/issues/3488))
This commit is contained in:
Richard van der Hoff
2018-07-06 16:56:23 +01:00
3 changed files with 11 additions and 4 deletions

View File

@@ -1,3 +1,12 @@
Synapse 0.32.1 (2018-07-06)
===========================
Bugfixes
--------
- Add explicit dependency on netaddr (`#3488 <https://github.com/matrix-org/synapse/issues/3488>`_)
Changes in synapse v0.32.0 (2018-07-06) Changes in synapse v0.32.0 (2018-07-06)
=========================================== ===========================================
No changes since 0.32.0rc1 No changes since 0.32.0rc1

View File

@@ -17,4 +17,4 @@
""" This is a reference implementation of a Matrix home server. """ This is a reference implementation of a Matrix home server.
""" """
__version__ = "0.32.0" __version__ = "0.32.1"

View File

@@ -58,15 +58,13 @@ REQUIREMENTS = {
"six": ["six"], "six": ["six"],
"prometheus_client": ["prometheus_client"], "prometheus_client": ["prometheus_client"],
"attr": ["attr"], "attr": ["attr"],
"netaddr>=0.7.18": ["netaddr"],
} }
CONDITIONAL_REQUIREMENTS = { CONDITIONAL_REQUIREMENTS = {
"web_client": { "web_client": {
"matrix_angular_sdk>=0.6.8": ["syweb>=0.6.8"], "matrix_angular_sdk>=0.6.8": ["syweb>=0.6.8"],
}, },
"preview_url": {
"netaddr>=0.7.18": ["netaddr"],
},
"email.enable_notifs": { "email.enable_notifs": {
"Jinja2>=2.8": ["Jinja2>=2.8"], "Jinja2>=2.8": ["Jinja2>=2.8"],
"bleach>=1.4.2": ["bleach>=1.4.2"], "bleach>=1.4.2": ["bleach>=1.4.2"],