Skip to content

Commit

Permalink
Merge pull request mtxr#110 from mtxr/v0_9_2_release
Browse files Browse the repository at this point in the history
Release v0.9.2
  • Loading branch information
tkopets authored May 30, 2017
2 parents 8ea503c + 782b8c5 commit e78265b
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.9.1
current_version = 0.9.2
files = SQLTools.py
tag = True
commit = True
Expand Down
2 changes: 1 addition & 1 deletion SQLTools.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "v0.9.1"
__version__ = "v0.9.2"

import sys
import os
Expand Down
3 changes: 2 additions & 1 deletion messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
"0.3.1": "messages/v0.3.0.md",
"0.8.2": "messages/v0.8.2.md",
"0.9.0": "messages/v0.9.0.md",
"0.9.1": "messages/v0.9.1.md"
"0.9.1": "messages/v0.9.1.md",
"0.9.2": "messages/v0.9.2.md"
}
17 changes: 8 additions & 9 deletions messages/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,26 @@

Your swiss knife SQL for Sublime Text.

Project website: [http://mtxr.github.io/SQLTools/](http://mtxr.github.io/SQLTools/)
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.

Project website: http://mtxr.github.io/SQLTools/

## Features

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

## Configuration

Documentation: [http://mtxr.github.io/SQLTools/](http://mtxr.github.io/SQLTools/)
Documentation: http://mtxr.github.io/SQLTools/
14 changes: 14 additions & 0 deletions messages/v0.9.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## v0.9.2 Notes

### Improvements

* Support PostgreSQL "password" setting in Connections file [#106](https://github.com/mtxr/SQLTools/issues/106)
* Improved performance of smart completions
* If configured, use stream output for saved and history queries
* [MySQL] Add support for `Describe Function`


### Fixes

* Fix Query History [#96](https://github.com/mtxr/SQLTools/issues/96)
* Fix functionality of "clear_output" for pannel output [#102](https://github.com/mtxr/SQLTools/issues/102)

0 comments on commit e78265b

Please sign in to comment.