Merge branch 'master' of github.com:matrix-org/synapse into develop

This commit is contained in:
Erik Johnston 2016-02-10 17:06:53 +00:00
commit 7718303e71
3 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,10 @@
Changes in synapse v0.13.1 (2016-02-10)
=======================================
* Bump matrix-angular-sdk (matrix web console) dependency to 0.6.8 to
pull in the fix for SYWEB-361 so that the default client can display
HTML messages again(!)
Changes in synapse v0.13.0 (2016-02-10) Changes in synapse v0.13.0 (2016-02-10)
======================================= =======================================

View file

@ -16,4 +16,4 @@
""" This is a reference implementation of a Matrix home server. """ This is a reference implementation of a Matrix home server.
""" """
__version__ = "0.13.0" __version__ = "0.13.1"

View file

@ -39,7 +39,7 @@ REQUIREMENTS = {
} }
CONDITIONAL_REQUIREMENTS = { CONDITIONAL_REQUIREMENTS = {
"web_client": { "web_client": {
"matrix_angular_sdk>=0.6.6": ["syweb>=0.6.6"], "matrix_angular_sdk>=0.6.8": ["syweb>=0.6.8"],
} }
} }