1.0.2
This commit is contained in:
parent
aac38070bb
commit
d92f312054
4 changed files with 7 additions and 5 deletions
|
@ -1,6 +1,8 @@
|
|||
# FPSQL
|
||||
An easy to use SQLite package
|
||||
#### Change log:
|
||||
###### v.1.0.2:
|
||||
Fix internal vars
|
||||
###### v.1.0.1:
|
||||
Actual release
|
||||
###### v.1.0.0:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "fpsql"
|
||||
version = "1.0.1"
|
||||
version = "1.0.2"
|
||||
authors = ["Firepup650 <firepyp650@gmail.com>"]
|
||||
description = "An easy to use SQLite package"
|
||||
readme = "README.md"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[metadata]
|
||||
name = fpsql
|
||||
version = 1.0.1
|
||||
version = 1.0.2
|
||||
author = Firepup650
|
||||
author_email = firepyp650@gmail.com
|
||||
description = An easy to use SQLite package
|
||||
|
|
|
@ -13,8 +13,8 @@ def alias(Function):
|
|||
return decorator
|
||||
|
||||
|
||||
__VERSION__ = "1.0.26"
|
||||
__NEW__ = "Adds `remove_prefix` and `remove_suffix`, name mangles internal variables in `sql`, fixes a bug in `console.warn`, adds `__VERSION__`, `__NEW__`, and `__LICENSE__`, adds many aliases for interactive help."
|
||||
__VERSION__ = "1.0.2"
|
||||
__NEW__ = "Fix internal vars"
|
||||
__LICENSE__ = "MIT"
|
||||
|
||||
|
||||
|
@ -144,7 +144,7 @@ class sql:
|
|||
)
|
||||
self.__con.commit()
|
||||
|
||||
def delete_all(self) -> None:
|
||||
def deleteAll(self) -> None:
|
||||
"""# Function: sql.delete_all
|
||||
Deletes all keys from the table
|
||||
# Inputs:
|
||||
|
|
Loading…
Reference in a new issue