Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
AbstractUmbra committed Jun 11, 2022
1 parent 937896b commit 17e2bb7
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 15 deletions.
4 changes: 2 additions & 2 deletions mystbin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ class VersionInfo(NamedTuple):
serial: int


__version__ = "3.1.1"
version_info: VersionInfo = VersionInfo(major=3, minor=1, micro=1, releaselevel="final", serial=0)
__version__ = "4.0.0"
version_info: VersionInfo = VersionInfo(major=4, minor=0, micro=0, releaselevel="final", serial=0)
41 changes: 29 additions & 12 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "mystbin.py"
version = "3.1.1"
version = "4.0.0"
description = "A small simple wrapper around the mystb.in API."
authors = ["AbstractUmbra <[email protected]>"]
license = "MIT"
Expand Down Expand Up @@ -37,6 +37,9 @@ sphinx = { version = "^4.0.0", optional = true }
sphinxcontrib-trio = { version = "*", optional = true }
furo = { version = "*", optional = true }

[tool.poetry.group.dev.dependencies]
black = "*"

[tool.poetry.dev-dependencies]
black = "^21.6b0"
isort = "^5.9.2"
Expand Down

0 comments on commit 17e2bb7

Please sign in to comment.