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
|
# FPSQL
|
||||||
An easy to use SQLite package
|
An easy to use SQLite package
|
||||||
#### Change log:
|
#### Change log:
|
||||||
|
###### v.1.0.2:
|
||||||
|
Fix internal vars
|
||||||
###### v.1.0.1:
|
###### v.1.0.1:
|
||||||
Actual release
|
Actual release
|
||||||
###### v.1.0.0:
|
###### v.1.0.0:
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "fpsql"
|
name = "fpsql"
|
||||||
version = "1.0.1"
|
version = "1.0.2"
|
||||||
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.1
|
version = 1.0.2
|
||||||
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
|
||||||
|
|
|
@ -13,8 +13,8 @@ def alias(Function):
|
||||||
return decorator
|
return decorator
|
||||||
|
|
||||||
|
|
||||||
__VERSION__ = "1.0.26"
|
__VERSION__ = "1.0.2"
|
||||||
__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."
|
__NEW__ = "Fix internal vars"
|
||||||
__LICENSE__ = "MIT"
|
__LICENSE__ = "MIT"
|
||||||
|
|
||||||
|
|
||||||
|
@ -144,7 +144,7 @@ class sql:
|
||||||
)
|
)
|
||||||
self.__con.commit()
|
self.__con.commit()
|
||||||
|
|
||||||
def delete_all(self) -> None:
|
def deleteAll(self) -> None:
|
||||||
"""# Function: sql.delete_all
|
"""# Function: sql.delete_all
|
||||||
Deletes all keys from the table
|
Deletes all keys from the table
|
||||||
# Inputs:
|
# Inputs:
|
||||||
|
|
Loading…
Reference in a new issue