Browse Source

1.41.0

tags/v1.41.0
Erik Johnston 2 years ago
parent
commit
6f77a3d433
4 changed files with 16 additions and 2 deletions
  1. +9
    -0
      CHANGES.md
  2. +0
    -1
      changelog.d/10571.feature
  3. +6
    -0
      debian/changelog
  4. +1
    -1
      synapse/__init__.py

+ 9
- 0
CHANGES.md View File

@@ -1,3 +1,12 @@
Synapse 1.41.0 (2021-08-24)
===========================

Features
--------

- Enable room capabilities ([MSC3244](https://github.com/matrix-org/matrix-doc/pull/3244)) by default and set room version 8 as the preferred room version for restricted rooms. ([\#10571](https://github.com/matrix-org/synapse/issues/10571))


Synapse 1.41.0rc1 (2021-08-18)
==============================



+ 0
- 1
changelog.d/10571.feature View File

@@ -1 +0,0 @@
Enable room capabilities ([MSC3244](https://github.com/matrix-org/matrix-doc/pull/3244)) by default and set room version 8 as the preferred room version for restricted rooms.

+ 6
- 0
debian/changelog View File

@@ -1,3 +1,9 @@
matrix-synapse-py3 (1.41.0) stable; urgency=medium

* New synapse release 1.41.0.

-- Synapse Packaging team <packages@matrix.org> Tue, 24 Aug 2021 15:31:45 +0100

matrix-synapse-py3 (1.41.0~rc1) stable; urgency=medium

* New synapse release 1.41.0~rc1.


+ 1
- 1
synapse/__init__.py View File

@@ -47,7 +47,7 @@ try:
except ImportError:
pass

__version__ = "1.41.0rc1"
__version__ = "1.41.0"

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


Loading…
Cancel
Save