Bump version to v0.3.0
This commit is contained in:
@ -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`
|
||||
|
@ -1 +1 @@
|
||||
__version__ = "0.2.0"
|
||||
__version__ = "0.3.0"
|
||||
|
@ -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"
|
||||
|
@ -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:
|
||||
|
Reference in New Issue
Block a user