Skip to content

Commit a183dc3

Browse files
committed
Bump version
1 parent e61b7a9 commit a183dc3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
A Python wrapper for [Matrix Synapse admin API](https://github.com/matrix-org/synapse).
99

1010
### Versioning
11-
This library now supports up to Synapse 1.58.0, any Admin API introduced after 1.58.0 may not be included in this version. However, newer changes to Admin API are planned to be included in this library. For planned update, see [TODO.md](TODO.md). In the future, the version numbering convention will follow the version this library up to, for example, if this library supports up to 1.58.0, then the version number of this library will be 1.58.0. And the minor number will be reserved for bug fixes in this repo.
11+
This library now supports up to Synapse 1.60.0, any Admin API introduced after 1.60.0 may not be included in this version. However, newer changes to Admin API are planned to be included in this library. For planned update, see [TODO.md](TODO.md). In the future, the version numbering convention will follow the version this library up to, for example, if this library supports up to 1.60.0, then the version number of this library will be 1.60.0. And the minor number will be reserved for bug fixes in this repo.
1212

1313
**Releases older than 0.1.5 only work with HTTP/2**
1414

supported_synapse.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"schemaVersion": 1,
33
"label": "Synapse",
4-
"message": "1.58.0",
4+
"message": "1.60.0",
55
"color": "yellowgreen"
66
}

synapse_admin/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
print("matrix-synapse-admin requires Python 3.7 or above.")
44
sys.exit(1)
55

6-
__version__ = "0.6.9"
6+
__version__ = "0.7.0"
77

88
from synapse_admin.user import User # noqa: F401
99
from synapse_admin.management import Management # noqa: F401

0 commit comments

Comments
 (0)