Skip to content

Commit 8542332

Browse files
committed
version bump and changelog
1 parent 37bc219 commit 8542332

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
6.0.2
1+
6.1.0
22

33
# mystbin.py Changelog
44

55
## Added
66

77
## Changes
8+
- Modernise codebase and tooling with Ruff.
89

910
## Fixes
10-
- Change `Paste.last_edited` in `Paste.from_data` to account for incorrect API docs. (d4c0dada470d2a16542583c35e80e46d5946ccfb)
11-
- Change `File` init to not make `attachment_url` mandatory. (406f15d00ef0866b3fd1c9fae0a4f6c77d3f0099)
11+
- KeyError upon accessing late init key in api response.
1212

1313
### Notes

mystbin/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
DEALINGS IN THE SOFTWARE.
2323
"""
2424

25-
__version__ = "5.1.0"
25+
__version__ = "6.1.0"
2626

2727
from typing import Literal, NamedTuple
2828

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

4141

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "mystbin-py"
3-
version = "6.0.2"
3+
version = "6.1.0"
44
description = "A small simple wrapper around the mystb.in API."
55
authors = ["AbstractUmbra <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)