diff --git a/CHANGELOG.md b/CHANGELOG.md index a4e8576..e73cf8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,11 @@ -7.0.0 +7.0.1 # mystbin.py Changelog ## Added +- Added `Paste.delete` method. Required the Paste having a security token set. (c3e6f24a2da7cd7fdeee6a7887a831addebe4d04) ## Changes -- Codebase now aligns with new mystbin. ## Fixes diff --git a/mystbin/__init__.py b/mystbin/__init__.py index 17622cc..8c10cac 100755 --- a/mystbin/__init__.py +++ b/mystbin/__init__.py @@ -22,7 +22,7 @@ DEALINGS IN THE SOFTWARE. """ -__version__ = "7.0.0" +__version__ = "7.0.1" from typing import Literal, NamedTuple @@ -39,6 +39,6 @@ class VersionInfo(NamedTuple): serial: int -version_info: VersionInfo = VersionInfo(major=7, minor=0, micro=0, releaselevel="final", serial=0) +version_info: VersionInfo = VersionInfo(major=7, minor=0, micro=1, releaselevel="final", serial=0) del NamedTuple, Literal, VersionInfo diff --git a/pyproject.toml b/pyproject.toml index 8c0510b..fbddff2 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mystbin-py" -version = "7.0.0" +version = "7.0.1" description = "A small simple wrapper around the mystb.in API." authors = ["AbstractUmbra "] license = "MIT"