1.0.42 (small typo fix)
This commit is contained in:
parent
1f13093f38
commit
f2ff82b337
3 changed files with 6 additions and 4 deletions
|
@ -1,6 +1,8 @@
|
||||||
# Firepup650
|
# Firepup650
|
||||||
Package containing various shorthand things I use, and a few imports I almost always use
|
Package containing various shorthand things I use, and a few imports I almost always use
|
||||||
### Change log:
|
### Change log:
|
||||||
|
#### v.1.0.42:
|
||||||
|
Small typo fix (`stackLevel` -> `stacklevel`)
|
||||||
#### v.1.0.41:
|
#### v.1.0.41:
|
||||||
Windows "Support"
|
Windows "Support"
|
||||||
#### v.1.0.40:
|
#### v.1.0.40:
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "firepup650"
|
name = "firepup650"
|
||||||
version = "1.0.41"
|
version = "1.0.42"
|
||||||
authors = ["Firepup650 <firepyp650@gmail.com>"]
|
authors = ["Firepup650 <firepyp650@gmail.com>"]
|
||||||
description = "Package containing various shorthand things I use, and a few imports I almost always use"
|
description = "Package containing various shorthand things I use, and a few imports I almost always use"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
@ -8,7 +8,7 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
ww(
|
ww(
|
||||||
"Warning! This module has reduced functionality on Windows! I hope you know what you're doing!",
|
"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]
|
import os, sys, time, sqlite3, ast, pydoc # type: ignore[import]
|
||||||
|
@ -41,8 +41,8 @@ def alias(func):
|
||||||
return decorator
|
return decorator
|
||||||
|
|
||||||
|
|
||||||
__VERSION__ = "1.0.41"
|
__VERSION__ = "1.0.42"
|
||||||
__NEW__ = 'Windows "Support"'
|
__NEW__ = "Small typo fix"
|
||||||
__LICENSE__ = "MIT"
|
__LICENSE__ = "MIT"
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue