Skip to content

Commit 17919d9

Browse files
committed
version bump and changelog
1 parent c3e6f24 commit 17919d9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Diff for: CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
7.0.0
1+
7.0.1
22

33
# mystbin.py Changelog
44

55
## Added
6+
- Added `Paste.delete` method. Required the Paste having a security token set. (c3e6f24a2da7cd7fdeee6a7887a831addebe4d04)
67

78
## Changes
8-
- Codebase now aligns with new mystbin.
99

1010
## Fixes
1111

Diff for: 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.0.0"
25+
__version__ = "7.0.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=0, micro=0, releaselevel="final", serial=0)
42+
version_info: VersionInfo = VersionInfo(major=7, minor=0, micro=1, releaselevel="final", serial=0)
4343

4444
del NamedTuple, Literal, VersionInfo

Diff for: pyproject.toml

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

0 commit comments

Comments
 (0)