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 Jun 22, 2024
1 parent 25bd58c commit 70075cb
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,12 +1,12 @@
7.0.1
7.0.2

# mystbin.py Changelog

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

## Changes

## Fixes
- Fix `password` not being set on paste creation. (3795ebdec5ded72a7d8e55880e45bae5d08331f0)

### Notes
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.0.1"
__version__ = "7.0.2"

from typing import Literal, NamedTuple

Expand All @@ -39,6 +39,6 @@ class VersionInfo(NamedTuple):
serial: int


version_info: VersionInfo = VersionInfo(major=7, minor=0, micro=1, releaselevel="final", serial=0)
version_info: VersionInfo = VersionInfo(major=7, minor=0, micro=2, 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 @@
[tool.poetry]
name = "mystbin-py"
version = "7.0.1"
version = "7.0.2"
description = "A small simple wrapper around the mystb.in API."
authors = ["AbstractUmbra <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 70075cb

Please sign in to comment.