Skip to content
Snippets Groups Projects
Commit 20ff89d6 authored by Richard van der Hoff's avatar Richard van der Hoff
Browse files

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))
parents 277c5617 1cfc2c47
No related branches found
No related tags found
No related merge requests found
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
......
...@@ -17,4 +17,4 @@ ...@@ -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"
...@@ -58,15 +58,13 @@ REQUIREMENTS = { ...@@ -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"],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment