From 9345b706e5f594538002e0694f9083f0f915fbbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= Date: Wed, 20 Apr 2022 20:38:06 +0200 Subject: [PATCH] Bump version to 1.0.0 --- discord_embed/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_discord_embed.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/discord_embed/__init__.py b/discord_embed/__init__.py index 3dc1f76..5becc17 100644 --- a/discord_embed/__init__.py +++ b/discord_embed/__init__.py @@ -1 +1 @@ -__version__ = "0.1.0" +__version__ = "1.0.0" diff --git a/pyproject.toml b/pyproject.toml index d1feeab..cdd54ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "discord-embed" -version = "0.1.0" +version = "1.0.0" description = "Make nice embeds for Discord" authors = ["Joakim Hellsén "] license = "GPL-3.0" diff --git a/tests/test_discord_embed.py b/tests/test_discord_embed.py index 9d6273a..b71bcfc 100644 --- a/tests/test_discord_embed.py +++ b/tests/test_discord_embed.py @@ -14,7 +14,7 @@ TEST_FILE = "tests/test.mp4" def test_version(): """Test that version is correct.""" - assert __version__ == "0.1.0" + assert __version__ == "1.0.0" def test_domain_ends_with_slash():