From 87169df413b00f0491b483fd1a3cc296797741fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Fri, 14 May 2021 13:53:51 +0200 Subject: [PATCH] pantalaimon: Bump our version --- CHANGELOG.md | 8 ++++++++ pantalaimon/main.py | 2 +- pantalaimon/panctl.py | 2 +- setup.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46d7c45..c1dba35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ 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.9.3 2021-05-14 + +### Changed + +- [[#73f68c7]] Bump the allowed nio version + +[73f68c7]: https://github.com/matrix-org/pantalaimon/commit/73f68c76fb05037bd7fe71688ce39eb1f526a385 + ## 0.9.2 2021-03-10 ### Changed diff --git a/pantalaimon/main.py b/pantalaimon/main.py index 6c69c82..0108cdb 100644 --- a/pantalaimon/main.py +++ b/pantalaimon/main.py @@ -259,7 +259,7 @@ async def daemon(context, log_level, debug_encryption, config, data_path): "connect to pantalaimon." ) ) -@click.version_option(version="0.9.2", prog_name="pantalaimon") +@click.version_option(version="0.9.3", prog_name="pantalaimon") @click.option( "--log-level", type=click.Choice(["error", "warning", "info", "debug"]), diff --git a/pantalaimon/panctl.py b/pantalaimon/panctl.py index e67e429..1b486cc 100644 --- a/pantalaimon/panctl.py +++ b/pantalaimon/panctl.py @@ -690,7 +690,7 @@ class PanCtl: "the pantalaimon daemon." ) ) -@click.version_option(version="0.9.2", prog_name="panctl") +@click.version_option(version="0.9.3", prog_name="panctl") def main(): loop = asyncio.get_event_loop() glib_loop = GLib.MainLoop() diff --git a/setup.py b/setup.py index 0d18eac..011d3e4 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ with open("README.md", encoding="utf-8") as f: setup( name="pantalaimon", - version="0.9.2", + version="0.9.3", url="https://github.com/matrix-org/pantalaimon", author="The Matrix.org Team", author_email="poljar@termina.org.uk",