From 75cef56757f294eec8a6392e358f35363001023d Mon Sep 17 00:00:00 2001 From: Luis Zurro de Cos Date: Wed, 29 Nov 2023 00:04:08 +0100 Subject: [PATCH] chore: Publish v1.0.0-beta.6 --- pyproject.toml | 2 +- src/telegram_download_daemon_ng/__main__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5f5adb3..9fd8d1c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "telegram-download-daemon-ng" -version = "1.0.0-beta.5" +version = "1.0.0-beta.6" description = "A daemon to automate telegram download of big files." authors = ["Luis Zurro "] readme = "README.md" diff --git a/src/telegram_download_daemon_ng/__main__.py b/src/telegram_download_daemon_ng/__main__.py index 6b2d113..8077e01 100644 --- a/src/telegram_download_daemon_ng/__main__.py +++ b/src/telegram_download_daemon_ng/__main__.py @@ -4,7 +4,7 @@ from . import TelegramDownloadDaemon -__version__ = "1.0.0-beta.5" +__version__ = "1.0.0-beta.6" TELEGRAM_DAEMON_API_ID = os.getenv("TELEGRAM_DAEMON_API_ID") TELEGRAM_DAEMON_API_HASH = os.getenv("TELEGRAM_DAEMON_API_HASH")