diff --git a/package/README.md b/package/README.md index ca4f0f7..731255d 100644 --- a/package/README.md +++ b/package/README.md @@ -1,6 +1,8 @@ # Firepup650 Package containing various shorthand things I use, and a few imports I almost always use ### Change log: +#### v.1.0.42: +Small typo fix (`stackLevel` -> `stacklevel`) #### v.1.0.41: Windows "Support" #### v.1.0.40: diff --git a/package/pyproject.toml b/package/pyproject.toml index ac961dd..4c06eaf 100644 --- a/package/pyproject.toml +++ b/package/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "firepup650" -version = "1.0.41" +version = "1.0.42" authors = ["Firepup650 "] description = "Package containing various shorthand things I use, and a few imports I almost always use" readme = "README.md" diff --git a/package/src/firepup650/__init__.py b/package/src/firepup650/__init__.py index 8946bb3..1408a07 100644 --- a/package/src/firepup650/__init__.py +++ b/package/src/firepup650/__init__.py @@ -8,7 +8,7 @@ try: except ImportError: ww( "Warning! This module has reduced functionality on Windows! I hope you know what you're doing!", - stackLevel=2, + stacklevel=2, ) import os, sys, time, sqlite3, ast, pydoc # type: ignore[import] @@ -41,8 +41,8 @@ def alias(func): return decorator -__VERSION__ = "1.0.41" -__NEW__ = 'Windows "Support"' +__VERSION__ = "1.0.42" +__NEW__ = "Small typo fix" __LICENSE__ = "MIT"