From f29e1f8329d52ffefe0d27a8f8b48810dccece49 Mon Sep 17 00:00:00 2001 From: Gabor Schulz Date: Sat, 31 Aug 2024 18:06:42 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.6.0=20=E2=86=92=200.6.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- pyproject.toml | 2 +- src/ics_to_todoist/__main__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 19f9367..a0da2fc 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.0 +current_version = 0.6.1 commit = True tag = True diff --git a/pyproject.toml b/pyproject.toml index 7382309..770a9b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ics-to-todoist" -version = "0.6.0" +version = "0.6.1" description = "A command line tool to convert entries from an .ics file to tasks in Todoist." authors = [ { name = "Gabor Schulz" }, diff --git a/src/ics_to_todoist/__main__.py b/src/ics_to_todoist/__main__.py index 61ab4b9..85e7473 100644 --- a/src/ics_to_todoist/__main__.py +++ b/src/ics_to_todoist/__main__.py @@ -16,7 +16,7 @@ app = typer.Typer() -__version__ = '0.6.0' +__version__ = '0.6.1' def load_ics_data(ics_file: str, config: Configuration) -> list[Event]: