Skip to content

Commit

Permalink
Merge branch 'release-v0.13.3' of github.com:matrix-org/synapse
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston committed Feb 11, 2016
2 parents 88a973c + 2a24f90 commit 7e0a168
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Changes in synapse v0.13.3 (2016-02-11)
=======================================

* Fix bug where ``/sync`` would occasionally return events in the wrong room.

Changes in synapse v0.13.2 (2016-02-11)
=======================================

Expand Down
2 changes: 1 addition & 1 deletion synapse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
""" This is a reference implementation of a Matrix home server.
"""

__version__ = "0.13.2"
__version__ = "0.13.3"
2 changes: 1 addition & 1 deletion synapse/storage/stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def get_room_events_stream_for_rooms(self, room_ids, from_key, to_key, limit=0,
preserve_fn(self.get_room_events_stream_for_room)(
room_id, from_key, to_key, limit, order=order,
)
for room_id in room_ids
for room_id in rm_ids
])
results.update(dict(zip(rm_ids, res)))

Expand Down

0 comments on commit 7e0a168

Please sign in to comment.