Skip to content

Commit

Permalink
version bump and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
AbstractUmbra committed Dec 28, 2024
1 parent aa1a782 commit d70785b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions mystbin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
DEALINGS IN THE SOFTWARE.
"""

__version__ = "7.1.0"
__version__ = "7.1.1"

from typing import Literal, NamedTuple

Expand All @@ -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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]" }]
dependencies = [
Expand Down

0 comments on commit d70785b

Please sign in to comment.