1.0.5
This commit is contained in:
parent
93a5a810cb
commit
b0f46a9e0a
6 changed files with 9 additions and 7 deletions
|
@ -1,6 +1,8 @@
|
||||||
# FPSQL
|
# FPSQL
|
||||||
An easy to use SQLite package
|
An easy to use SQLite package
|
||||||
#### Change log:
|
#### Change log:
|
||||||
|
###### v.1.0.5:
|
||||||
|
Double check mypy problems and resolve them
|
||||||
###### v.1.0.4:
|
###### v.1.0.4:
|
||||||
Fix all mypy stub issues
|
Fix all mypy stub issues
|
||||||
###### v.1.0.3:
|
###### v.1.0.3:
|
||||||
|
|
BIN
package/dist/fpsql-1.0.4-py3-none-any.whl
vendored
BIN
package/dist/fpsql-1.0.4-py3-none-any.whl
vendored
Binary file not shown.
BIN
package/dist/fpsql-1.0.4.tar.gz
vendored
BIN
package/dist/fpsql-1.0.4.tar.gz
vendored
Binary file not shown.
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "fpsql"
|
name = "fpsql"
|
||||||
version = "1.0.4"
|
version = "1.0.5"
|
||||||
authors = ["Firepup650 <firepyp650@gmail.com>"]
|
authors = ["Firepup650 <firepyp650@gmail.com>"]
|
||||||
description = "An easy to use SQLite package"
|
description = "An easy to use SQLite package"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[metadata]
|
[metadata]
|
||||||
name = fpsql
|
name = fpsql
|
||||||
version = 1.0.4
|
version = 1.0.5
|
||||||
author = Firepup650
|
author = Firepup650
|
||||||
author_email = firepyp650@gmail.com
|
author_email = firepyp650@gmail.com
|
||||||
description = An easy to use SQLite package
|
description = An easy to use SQLite package
|
||||||
|
|
|
@ -14,8 +14,8 @@ def alias(Function):
|
||||||
return decorator
|
return decorator
|
||||||
|
|
||||||
|
|
||||||
__VERSION__ = "1.0.2"
|
__VERSION__ = "1.0.5"
|
||||||
__NEW__ = "Fix internal vars"
|
__NEW__ = "Double check mypy problems and resolve them"
|
||||||
__LICENSE__ = "MIT"
|
__LICENSE__ = "MIT"
|
||||||
|
|
||||||
|
|
||||||
|
@ -173,6 +173,6 @@ class sql:
|
||||||
# Raises:
|
# Raises:
|
||||||
None"""
|
None"""
|
||||||
self.__con.close()
|
self.__con.close()
|
||||||
self.__con = None
|
self.__con = None # type: ignore[assignment]
|
||||||
self.__db = None
|
self.__db = ""
|
||||||
self.__table = None
|
self.__table = ""
|
||||||
|
|
Loading…
Reference in a new issue