mirror of
https://github.com/matrix-org/pantalaimon.git
synced 2025-07-23 15:00:34 -04:00
pantalaimon: Bumb the version
This commit is contained in:
parent
2b359c22d2
commit
a7286dfc9f
4 changed files with 19 additions and 3 deletions
16
CHANGELOG.md
16
CHANGELOG.md
|
@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## 0.9.3 2021-05-14
|
||||
|
||||
### Added
|
||||
|
||||
- [[#98]] Add the ability to remove old room keys
|
||||
- [[#95]] Encrypt thumbnails uploaded by a client
|
||||
|
||||
### Fixed
|
||||
|
||||
- [[#96]] Split out the media cache loading logic to avoid returning the
|
||||
whole LRU cache when it shouldn't
|
||||
|
||||
[#98]: https://github.com/matrix-org/pantalaimon/pull/98
|
||||
[#96]: https://github.com/matrix-org/pantalaimon/pull/96
|
||||
[#95]: https://github.com/matrix-org/pantalaimon/pull/95
|
||||
|
||||
## 0.9.3 2021-05-14
|
||||
|
||||
### Changed
|
||||
|
||||
- [[#73f68c7]] Bump the allowed nio version
|
||||
|
|
|
@ -262,7 +262,7 @@ async def daemon(context, log_level, debug_encryption, config, data_path):
|
|||
"connect to pantalaimon."
|
||||
)
|
||||
)
|
||||
@click.version_option(version="0.9.3", prog_name="pantalaimon")
|
||||
@click.version_option(version="0.10.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.9.3", prog_name="panctl")
|
||||
@click.version_option(version="0.10.0", prog_name="panctl")
|
||||
def main():
|
||||
loop = asyncio.get_event_loop()
|
||||
glib_loop = GLib.MainLoop()
|
||||
|
|
2
setup.py
2
setup.py
|
@ -7,7 +7,7 @@ with open("README.md", encoding="utf-8") as f:
|
|||
|
||||
setup(
|
||||
name="pantalaimon",
|
||||
version="0.9.3",
|
||||
version="0.10.0",
|
||||
url="https://github.com/matrix-org/pantalaimon",
|
||||
author="The Matrix.org Team",
|
||||
author_email="poljar@termina.org.uk",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue