Skip to content

Commit d40334c

Browse files
committed
update main_c
1 parent 99bdb7c commit d40334c

5 files changed

Lines changed: 6 additions & 5 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "PySQL"
3-
version = "1.0.5"
3+
version = "1.0.6"
44
description = "GUI & Python wrapper for making MySQL queries easier"
55
authors = ["Devansh3712 <devanshamity@gmail.com>"]
66
license = "MIT"

pysql/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.5
1+
1.0.6

pysql/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
except:
2424
raise Exception("Package Error: modules not setup")
2525

26-
__version__ = "1.0.5"
26+
__version__ = "1.0.6"
2727

2828
print(info.ascii_art)
2929
time.sleep(1)

pysql/main_c.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,12 @@
2121
import data.info as info
2222
import data.export as export
2323
import data.imports as imports
24+
import data.update as update
2425

2526
except:
2627
raise Exception("Package Error: modules not setup")
2728

28-
__version__ = "1.0.5"
29+
__version__ = "1.0.6"
2930

3031
if platform.system() == "Windows":
3132
init(convert = True)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name = "pysql-cli",
13-
version = "1.0.5",
13+
version = "1.0.6",
1414
author = "Devansh Singh",
1515
author_email = "devanshamity@gmail.com",
1616
url = "https://github.com/Devansh3712/PySQL",

0 commit comments

Comments
 (0)