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 <tlovinator@gmail.com>"] 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():