Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
KnugiHK committed Feb 1, 2022
1 parent b7e2f43 commit 170d606
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
A Python wrapper for [Matrix Synapse admin API](/~https://github.com/matrix-org/synapse).

### Versioning
This library now supports up to Synapse 1.50.0, any Admin API introduced after 1.50.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.50.0, then the version number of this library will be 1.50.0. And the minor number will be reserved for bug fixes in this repo.
This library now supports up to Synapse 1.51.0, any Admin API introduced after 1.51.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.51.0, then the version number of this library will be 1.51.0. And the minor number will be reserved for bug fixes in this repo.

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

Expand Down
2 changes: 1 addition & 1 deletion supported_synapse.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"schemaVersion": 1,
"label": "Synapse",
"message": "1.50.0",
"message": "1.51.0",
"color": "yellowgreen"
}
2 changes: 1 addition & 1 deletion synapse_admin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
print("matrix-synapse-admin requires Python 3.7 or above.")
sys.exit(1)

__version__ = "0.6.5"
__version__ = "0.6.7"

from synapse_admin.user import User # noqa: F401
from synapse_admin.management import Management # noqa: F401
Expand Down

0 comments on commit 170d606

Please sign in to comment.