Skip to content

Commit 70c0b8d

Browse files
committed
version bump
1 parent fd2723b commit 70c0b8d

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

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.0.3"
25+
__version__ = "5.1.0"
2626

2727
from typing import Literal, NamedTuple
2828

@@ -40,4 +40,4 @@ class VersionInfo(NamedTuple):
4040
serial: int
4141

4242

43-
version_info: VersionInfo = VersionInfo(major=5, minor=0, micro=3, releaselevel="final", serial=0)
43+
version_info: VersionInfo = VersionInfo(major=5, minor=1, micro=0, releaselevel="final", serial=0)

pyproject.toml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "mystbin-py"
3-
version = "5.0.3"
3+
version = "5.1.0"
44
description = "A small simple wrapper around the mystb.in API."
55
authors = ["AbstractUmbra <[email protected]>"]
66
license = "MIT"
@@ -59,16 +59,24 @@ lines_after_imports = 2
5959

6060
[tool.pyright]
6161
ignore = ["docs/conf.py"]
62+
include = ["mystbin/**/*.py"]
6263
useLibraryCodeForTypes = true
6364
typeCheckingMode = "basic"
6465
pythonVersion = "3.9"
6566
strictListInference = true
6667
strictDictionaryInference = true
6768
strictSetInference = true
69+
strictParameterNoneValue = true
6870
reportMissingImports = "error"
6971
reportUnusedImport = "error"
7072
reportUnusedClass = "error"
7173
reportUnusedFunction = "error"
74+
reportUnusedVariable = "error"
75+
reportUnusedExpression = "error"
76+
reportGeneralTypeIssues = "error"
77+
reportDuplicateImport = "error"
78+
reportUntypedFunctionDecorator = "error"
79+
reportUnnecessaryTypeIgnoreComment = "warning"
7280

7381
[build-system]
7482
requires = ["poetry>=1.0"]

0 commit comments

Comments
 (0)