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 "] 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: