diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-10-04 10:21:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-04 10:21:16 -0400 |
commit | d8663f5e6358f8eaeda9a3f923fae720a140ca4d (patch) | |
tree | 79bc68938e285dad45d93658a2f06742bbb5f491 | |
parent | Fix building wheels on OSX (#14046) (diff) | |
download | synapse-d8663f5e6358f8eaeda9a3f923fae720a140ca4d.tar.xz |
Advertise supporting version 1.3 of the Matrix spec. (#14032)
Now that all features / changes in 1.3 are supported in Synapse.
-rw-r--r-- | changelog.d/14032.feature | 1 | ||||
-rw-r--r-- | synapse/rest/client/versions.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/changelog.d/14032.feature b/changelog.d/14032.feature new file mode 100644 index 0000000000..bb221d3ca6 --- /dev/null +++ b/changelog.d/14032.feature @@ -0,0 +1 @@ +Advertise Matrix 1.3 support on `/_matrix/client/versions`. diff --git a/synapse/rest/client/versions.py b/synapse/rest/client/versions.py index 280d306483..18ed313b5c 100644 --- a/synapse/rest/client/versions.py +++ b/synapse/rest/client/versions.py @@ -75,6 +75,7 @@ class VersionsRestServlet(RestServlet): "r0.6.1", "v1.1", "v1.2", + "v1.3", ], # as per MSC1497: "unstable_features": { |