mirror of
https://github.com/matrix-org/pantalaimon.git
synced 2025-03-11 00:42:11 -04:00
pantalaimon: Bump the version and update the changelog.
This commit is contained in:
parent
c13bd1329b
commit
625bde3305
15
CHANGELOG.md
15
CHANGELOG.md
@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file.
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## 0.7.0 2020-09-02
|
||||
|
||||
### Fixed
|
||||
|
||||
- [[#60]] Sanitize the GET /rooms/{room_id}/messages filters as well.
|
||||
- [[#62]] Store media info when decrypting instead of using a event callback.
|
||||
|
||||
### Changed
|
||||
|
||||
- [[d425e2d]] Increase the max POST size.
|
||||
|
||||
[#62]: https://github.com/matrix-org/pantalaimon/pull/62
|
||||
[#60]: https://github.com/matrix-org/pantalaimon/pull/60
|
||||
[d425e2d]: https://github.com/matrix-org/pantalaimon/commit/d425e2d188aed32c3fe87cac210c0943fd51b085
|
||||
|
||||
## 0.6.5 2020-07-02
|
||||
|
||||
### Fixed
|
||||
|
@ -250,7 +250,7 @@ async def daemon(context, log_level, debug_encryption, config, data_path):
|
||||
"connect to pantalaimon."
|
||||
)
|
||||
)
|
||||
@click.version_option(version="0.6.5", prog_name="pantalaimon")
|
||||
@click.version_option(version="0.7.0", prog_name="pantalaimon")
|
||||
@click.option(
|
||||
"--log-level",
|
||||
type=click.Choice(["error", "warning", "info", "debug"]),
|
||||
|
@ -690,7 +690,7 @@ class PanCtl:
|
||||
"the pantalaimon daemon."
|
||||
)
|
||||
)
|
||||
@click.version_option(version="0.6.5", prog_name="panctl")
|
||||
@click.version_option(version="0.7.0", prog_name="panctl")
|
||||
def main():
|
||||
loop = asyncio.get_event_loop()
|
||||
glib_loop = GLib.MainLoop()
|
||||
|
4
setup.py
4
setup.py
@ -7,7 +7,7 @@ with open("README.md", encoding="utf-8") as f:
|
||||
|
||||
setup(
|
||||
name="pantalaimon",
|
||||
version="0.6.5",
|
||||
version="0.7.0",
|
||||
url="https://github.com/matrix-org/pantalaimon",
|
||||
author="The Matrix.org Team",
|
||||
author_email="poljar@termina.org.uk",
|
||||
@ -29,7 +29,7 @@ setup(
|
||||
"cachetools >= 3.0.0"
|
||||
"prompt_toolkit>2<4",
|
||||
"typing;python_version<'3.5'",
|
||||
"matrix-nio[e2e] >= 0.14, < 0.15"
|
||||
"matrix-nio[e2e] >= 0.14, < 0.16"
|
||||
],
|
||||
extras_require={
|
||||
"ui": [
|
||||
|
Loading…
x
Reference in New Issue
Block a user