diff options
author | Richard van der Hoff <richard@matrix.org> | 2021-07-23 00:43:53 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2021-07-23 00:43:53 +0100 |
commit | 016f085722666ac68d2e4b4f21793db399203ea9 (patch) | |
tree | de40ce47ba1fc673b8c0d85a4570170548278341 /synapse/__init__.py | |
parent | Make deprecation notice of the spam checker doc more obvious (#10395) (diff) | |
parent | 1.38.1 (diff) | |
download | synapse-016f085722666ac68d2e4b4f21793db399203ea9.tar.xz |
Merge tag 'v1.38.1'
Synapse 1.38.1 (2021-07-22) =========================== Bugfixes -------- - Always include `device_one_time_keys_count` key in `/sync` response to work around a bug in Element Android that broke encryption for new devices. ([\#10457](https://github.com/matrix-org/synapse/issues/10457))
Diffstat (limited to 'synapse/__init__.py')
-rw-r--r-- | synapse/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/__init__.py b/synapse/__init__.py index 5ecce24eee..7ea5a790db 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -47,7 +47,7 @@ try: except ImportError: pass -__version__ = "1.38.0" +__version__ = "1.38.1" 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 |