From 28da36d920da937955a257d03a04a998ca8d443a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= <tlovinator@gmail.com>
Date: Sat, 19 Feb 2022 01:50:57 +0100
Subject: [PATCH] Bump version to v0.3.0

---
 CHANGELOG.md                       | 3 ++-
 discord_reminder_bot/__init__.py   | 2 +-
 pyproject.toml                     | 2 +-
 tests/test_discord_reminder_bot.py | 4 ++--
 4 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 32155f1..2f2020c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,8 +5,9 @@ All notable changes to discord-reminder-bot 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).
 
-## [Unreleased]
+## [0.3.0] - 2022-02-19
 
+- Docker image is now built automatically
 - Added more information to .env.example
 - Rewrote install instructions and added how you create a Discord bot token to the README.md.
 - `build: .` is now removed from docker-compose.yml as it broke `docker-compose up`
diff --git a/discord_reminder_bot/__init__.py b/discord_reminder_bot/__init__.py
index d3ec452..493f741 100644
--- a/discord_reminder_bot/__init__.py
+++ b/discord_reminder_bot/__init__.py
@@ -1 +1 @@
-__version__ = "0.2.0"
+__version__ = "0.3.0"
diff --git a/pyproject.toml b/pyproject.toml
index 9eca586..26a2ead 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "discord-reminder-bot"
-version = "0.2.0"
+version = "0.3.0"
 description = "Discord bot that allows you to set date, cron and interval reminders."
 authors = ["Joakim Hellsén <tlovinator@gmail.com>"]
 license = "GPL-3.0-or-later"
diff --git a/tests/test_discord_reminder_bot.py b/tests/test_discord_reminder_bot.py
index 507536d..c099a45 100644
--- a/tests/test_discord_reminder_bot.py
+++ b/tests/test_discord_reminder_bot.py
@@ -14,8 +14,8 @@ from discord_reminder_bot.main import calc_countdown, send_to_discord
 
 
 def test_version():
-    """Check if version is 0.2.0."""
-    assert __version__ == "0.2.0"
+    """Check if version is 0.3.0."""
+    assert __version__ == "0.3.0"
 
 
 class TestClass: