From d437a315efdfaea7483f22f77f116a5abf16ee64 Mon Sep 17 00:00:00 2001 From: Slipstream Date: Wed, 11 Jun 2025 17:35:15 -0600 Subject: [PATCH] bump version to 0.4.1 in __init__.py and pyproject.toml --- disagreement/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/disagreement/__init__.py b/disagreement/__init__.py index 0b03073..f6e17a5 100644 --- a/disagreement/__init__.py +++ b/disagreement/__init__.py @@ -12,7 +12,7 @@ __title__ = "disagreement" __author__ = "Slipstream" __license__ = "BSD 3-Clause License" __copyright__ = "Copyright 2025 Slipstream" -__version__ = "0.4.0" +__version__ = "0.4.1" from .client import Client, AutoShardedClient from .models import Message, User, Reaction, AuditLogEntry diff --git a/pyproject.toml b/pyproject.toml index 8998595..2c97a0e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "disagreement" -version = "0.4.0" +version = "0.4.1" description = "A Python library for the Discord API." readme = "README.md" requires-python = ">=3.10"