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

Commit

Permalink
Merge pull request #221 from mtxr/release_v0.9.12
Browse files Browse the repository at this point in the history
Release v0.9.12
  • Loading branch information
tkopets authored Jun 7, 2019
2 parents 63e4a49 + fcc1781 commit 70567ca
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 3 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.9
current_version = 0.9.12
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.9"
__version__ = "v0.9.12"

import sys
import os
Expand Down
5 changes: 4 additions & 1 deletion messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,8 @@
"0.9.6": "messages/v0.9.6.md",
"0.9.7": "messages/v0.9.7.md",
"0.9.8": "messages/v0.9.8.md",
"0.9.9": "messages/v0.9.9.md"
"0.9.9": "messages/v0.9.9.md",
"0.9.10": "messages/v0.9.10.md",
"0.9.11": "messages/v0.9.11.md",
"0.9.12": "messages/v0.9.12.md"
}
5 changes: 5 additions & 0 deletions messages/v0.9.10.md
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]
5 changes: 5 additions & 0 deletions messages/v0.9.11.md
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]
18 changes: 18 additions & 0 deletions messages/v0.9.12.md
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

0 comments on commit 70567ca

Please sign in to comment.