Skip to content

Commit d70785b

Browse files
committedDec 28, 2024
version bump and changelog
1 parent aa1a782 commit d70785b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
 

‎CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
7.1.0
1+
7.1.1
22

33
# mystbin.py Changelog
44

55
## Added
66

77
## Changes
8-
- Add ability to change the URL base for self-hosted applications. (42036aa718516dbf22d9800f0861dd93bffe168d)
98

109
## Fixes
10+
- Fix issue with new `root_url` parameter. (7cdbb3ab0e9d89f23cd1718c53282555f55e2516)
1111

1212
### Notes
1313

‎mystbin/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
DEALINGS IN THE SOFTWARE.
2323
"""
2424

25-
__version__ = "7.1.0"
25+
__version__ = "7.1.1"
2626

2727
from typing import Literal, NamedTuple
2828

@@ -39,6 +39,6 @@ class VersionInfo(NamedTuple):
3939
serial: int
4040

4141

42-
version_info: VersionInfo = VersionInfo(major=7, minor=1, micro=0, releaselevel="final", serial=0)
42+
version_info: VersionInfo = VersionInfo(major=7, minor=1, micro=1, releaselevel="final", serial=0)
4343

4444
del NamedTuple, Literal, VersionInfo

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mystbin-py"
3-
version = "7.1.0"
3+
version = "7.1.1"
44
description = "A small simple wrapper around the mystb.in API."
55
authors = [{ name = "Alex Nørgaard", email = "umbra@abstractumbra.dev" }]
66
dependencies = [

0 commit comments

Comments
 (0)