From d70785b61829ad20f61af45a892655f1b91c03da Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Alex=20N=C3=B8rgaard?= <umbra@abstractumbra.dev>
Date: Sat, 28 Dec 2024 23:49:15 +0000
Subject: [PATCH] version bump and changelog

---
 CHANGELOG.md        | 4 ++--
 mystbin/__init__.py | 4 ++--
 pyproject.toml      | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index d30e758..b84e3d0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,13 +1,13 @@
-7.1.0
+7.1.1
 
 # mystbin.py Changelog
 
 ## Added
 
 ## Changes
-- Add ability to change the URL base for self-hosted applications. (42036aa718516dbf22d9800f0861dd93bffe168d)
 
 ## Fixes
+- Fix issue with new `root_url` parameter. (7cdbb3ab0e9d89f23cd1718c53282555f55e2516)
 
 ### Notes
 
diff --git a/mystbin/__init__.py b/mystbin/__init__.py
index 09e03d1..92b850e 100755
--- a/mystbin/__init__.py
+++ b/mystbin/__init__.py
@@ -22,7 +22,7 @@
 DEALINGS IN THE SOFTWARE.
 """
 
-__version__ = "7.1.0"
+__version__ = "7.1.1"
 
 from typing import Literal, NamedTuple
 
@@ -39,6 +39,6 @@ class VersionInfo(NamedTuple):
     serial: int
 
 
-version_info: VersionInfo = VersionInfo(major=7, minor=1, micro=0, releaselevel="final", serial=0)
+version_info: VersionInfo = VersionInfo(major=7, minor=1, micro=1, releaselevel="final", serial=0)
 
 del NamedTuple, Literal, VersionInfo
diff --git a/pyproject.toml b/pyproject.toml
index 5a4737e..e69dd82 100755
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [project]
 name = "mystbin-py"
-version = "7.1.0"
+version = "7.1.1"
 description = "A small simple wrapper around the mystb.in API."
 authors = [{ name = "Alex Nørgaard", email = "umbra@abstractumbra.dev" }]
 dependencies = [