Skip to content
This repository was archived by the owner on Mar 12, 2020. It is now read-only.

Commit e78265b

Browse files
authored
Merge pull request #110 from mtxr/v0_9_2_release
Release v0.9.2
2 parents 8ea503c + 782b8c5 commit e78265b

File tree

5 files changed

+26
-12
lines changed

5 files changed

+26
-12
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.9.1
2+
current_version = 0.9.2
33
files = SQLTools.py
44
tag = True
55
commit = True

SQLTools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "v0.9.1"
1+
__version__ = "v0.9.2"
22

33
import sys
44
import os

messages.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@
66
"0.3.1": "messages/v0.3.0.md",
77
"0.8.2": "messages/v0.8.2.md",
88
"0.9.0": "messages/v0.9.0.md",
9-
"0.9.1": "messages/v0.9.1.md"
9+
"0.9.1": "messages/v0.9.1.md",
10+
"0.9.2": "messages/v0.9.2.md"
1011
}

messages/install.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,26 @@
33

44
Your swiss knife SQL for Sublime Text.
55

6-
Project website: [http://mtxr.github.io/SQLTools/](http://mtxr.github.io/SQLTools/)
6+
Write your SQL with smart completions and hady table and function definitions, execute SQL and explain queries, format your queries and save them in history.
7+
8+
Project website: http://mtxr.github.io/SQLTools/
79

810
## Features
911

12+
* Smart auto completions (for PostgreSQL, MySQL, Oracle, MSSQL, Vertica, Firebird)
13+
* Run SQL Queries (`CTRL+e, CTRL+e`)
1014
* View table schemas (`CTRL+e, CTRL+d`)
11-
![View table schemas](https://github.com/mtxr/SQLTools/raw/images/table_description.gif?raw=true)
1215
* View Queries history (`CTRL+e, CTRL+h`)
1316
* Show table records (`CTRL+e, CTRL+s`)
14-
![Show table records](https://github.com/mtxr/SQLTools/raw/images/table_records.gif?raw=true)
15-
* Auto complete (for PostgreSQL & MySQL. Looking for help with other SGDBs)
16-
* Run SQL Queries (`CTRL+e, CTRL+e`)
17-
![Auto complete (PostgreSQL & MySQL) && Run SQL Queries](https://github.com/mtxr/SQLTools/raw/images/execute_auto_complete.gif?raw=true)
17+
* Show explain plan for queries (PostgreSQL, MySQL, Oracle, Vertica, SQLite) (`CTRL+e, CTRL+x`)
1818
* Formatting SQL Queries (`CTRL+e, CTRL+b`)
19-
![Formatting SQL Queries](https://github.com/mtxr/SQLTools/raw/images/format_sql.gif?raw=true)
2019
* Threading Support (prevent ST lockups)
2120
* Query timeout (Kill thread if query takes too long)
22-
* Unescape chars for languages (PHP \" is replace by ")
21+
* Unescape chars for languages (PHP \" is replaced by ")
2322
* Save queries (`CTRL+e, CTRL+q`)
2423
* List and Run saved queries (`CTRL+e, CTRL+a`)
2524
* Remove saved queries (`CTRL+e, CTRL+r`)
2625

2726
## Configuration
2827

29-
Documentation: [http://mtxr.github.io/SQLTools/](http://mtxr.github.io/SQLTools/)
28+
Documentation: http://mtxr.github.io/SQLTools/

messages/v0.9.2.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
## v0.9.2 Notes
2+
3+
### Improvements
4+
5+
* Support PostgreSQL "password" setting in Connections file [#106](https://github.com/mtxr/SQLTools/issues/106)
6+
* Improved performance of smart completions
7+
* If configured, use stream output for saved and history queries
8+
* [MySQL] Add support for `Describe Function`
9+
10+
11+
### Fixes
12+
13+
* Fix Query History [#96](https://github.com/mtxr/SQLTools/issues/96)
14+
* Fix functionality of "clear_output" for pannel output [#102](https://github.com/mtxr/SQLTools/issues/102)

0 commit comments

Comments
 (0)