From d631ab8e7cdd0ad2f87910d4e5459d8398346c47 Mon Sep 17 00:00:00 2001 From: Slipstream Date: Tue, 10 Jun 2025 18:25:43 -0600 Subject: [PATCH] bump: update version to 0.1.0rc3 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 2e59fcc..40140a1 100644 --- a/disagreement/__init__.py +++ b/disagreement/__init__.py @@ -14,7 +14,7 @@ __title__ = "disagreement" __author__ = "Slipstream" __license__ = "BSD 3-Clause License" __copyright__ = "Copyright 2025 Slipstream" -__version__ = "0.1.0rc2" +__version__ = "0.1.0rc3" from .client import Client, AutoShardedClient from .models import Message, User, Reaction diff --git a/pyproject.toml b/pyproject.toml index 836c92d..962d6b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "disagreement" -version = "0.1.0rc2" +version = "0.1.0rc3" description = "A Python library for the Discord API." readme = "README.md" requires-python = ">=3.10"