mirror of
https://github.com/matrix-org/pantalaimon.git
synced 2025-01-08 22:28:01 -05:00
Bump our version
This commit is contained in:
parent
82fcbf8e85
commit
85c7b685e5
13
CHANGELOG.md
13
CHANGELOG.md
@ -4,6 +4,19 @@ 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/),
|
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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## 0.10.4 2022-02-04
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- [[#122]] Fix the GLib import for panctl on some distributions
|
||||||
|
- [[#120]] Don't use strip to filter Bearer from the auth header
|
||||||
|
- [[#118]] Don't use the raw path if we need to sanitize filters, fixing room
|
||||||
|
history fetching for Fractal
|
||||||
|
|
||||||
|
[#122]: https://github.com/matrix-org/pantalaimon/pull/122
|
||||||
|
[#120]: https://github.com/matrix-org/pantalaimon/pull/120
|
||||||
|
[#118]: https://github.com/matrix-org/pantalaimon/pull/118
|
||||||
|
|
||||||
## 0.10.3 2021-09-02
|
## 0.10.3 2021-09-02
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@ -262,7 +262,7 @@ async def daemon(context, log_level, debug_encryption, config, data_path):
|
|||||||
"connect to pantalaimon."
|
"connect to pantalaimon."
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
@click.version_option(version="0.10.2", prog_name="pantalaimon")
|
@click.version_option(version="0.10.4", prog_name="pantalaimon")
|
||||||
@click.option(
|
@click.option(
|
||||||
"--log-level",
|
"--log-level",
|
||||||
type=click.Choice(["error", "warning", "info", "debug"]),
|
type=click.Choice(["error", "warning", "info", "debug"]),
|
||||||
|
@ -695,7 +695,7 @@ class PanCtl:
|
|||||||
"the pantalaimon daemon."
|
"the pantalaimon daemon."
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
@click.version_option(version="0.10.3", prog_name="panctl")
|
@click.version_option(version="0.10.4", prog_name="panctl")
|
||||||
def main():
|
def main():
|
||||||
loop = asyncio.new_event_loop()
|
loop = asyncio.new_event_loop()
|
||||||
glib_loop = GLib.MainLoop()
|
glib_loop = GLib.MainLoop()
|
||||||
|
4
setup.py
4
setup.py
@ -7,7 +7,7 @@ with open("README.md", encoding="utf-8") as f:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="pantalaimon",
|
name="pantalaimon",
|
||||||
version="0.10.3",
|
version="0.10.4",
|
||||||
url="https://github.com/matrix-org/pantalaimon",
|
url="https://github.com/matrix-org/pantalaimon",
|
||||||
author="The Matrix.org Team",
|
author="The Matrix.org Team",
|
||||||
author_email="poljar@termina.org.uk",
|
author_email="poljar@termina.org.uk",
|
||||||
@ -29,7 +29,7 @@ setup(
|
|||||||
"cachetools >= 3.0.0",
|
"cachetools >= 3.0.0",
|
||||||
"prompt_toolkit > 2, < 4",
|
"prompt_toolkit > 2, < 4",
|
||||||
"typing;python_version<'3.5'",
|
"typing;python_version<'3.5'",
|
||||||
"matrix-nio[e2e] >= 0.18, < 0.19"
|
"matrix-nio[e2e] >= 0.18, < 0.20"
|
||||||
],
|
],
|
||||||
extras_require={
|
extras_require={
|
||||||
"ui": [
|
"ui": [
|
||||||
|
Loading…
Reference in New Issue
Block a user