forked from mtxr/SublimeText-SQLTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
30 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 0.9.9 | ||
current_version = 0.9.12 | ||
files = SQLTools.py | ||
tag = True | ||
commit = True | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = "v0.9.9" | ||
__version__ = "v0.9.12" | ||
|
||
import sys | ||
import os | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
## v0.9.10 Notes | ||
|
||
### Fixes | ||
|
||
* Added `focus_result` setting closing issue [#183] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
## v0.9.11 Notes | ||
|
||
### Fixes | ||
|
||
* New command `ST: Format SQL All File` (internal name `st_format_all`) to format the entire file [#182] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
## v0.9.12 Notes | ||
|
||
### Improvements | ||
|
||
* Snowflake (`snowsql`) support | ||
* Added support for prompting of the connection parameters | ||
* Table/view/function selection quick panel is pre-populated with the text of the current selection | ||
* New command `ST: Refresh Connection Data` (internal name `st_refresh_connection_data`) to reload the list of database objects | ||
* Improve performance (completions and connection listing) | ||
* Add a configurable setting to enable/disable completion for certain selectors (`autocomplete_selectors_ignore`, `autocomplete_selectors_active`) | ||
|
||
|
||
### Fixes | ||
|
||
* Fix PostgreSQL v11 compatibility issue (functions were not listed) | ||
* Do not create an empty settings file [#144] | ||
* Bump timeout to 60 seconds for internal commands | ||
* Use python core logging for logs |