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

Commit 25d49a7

Browse files
authored
Merge pull request #157 from mtxr/v0_9_7_release
Release v0.9.7
2 parents 32bfce6 + 9f3dcf7 commit 25d49a7

File tree

5 files changed

+28
-23
lines changed

5 files changed

+28
-23
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.6
2+
current_version = 0.9.7
33
files = SQLTools.py
44
tag = True
55
commit = True

ISSUE_TEMPLATE.md

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,30 @@
1-
> This is a guideline to help us to understand SQLTools Issues.
1+
> This issue template helps us understand your SQLTools issues better.
2+
>
3+
> You don't need to stick to this template, but please try to guide us to reproduce the errors or understand your feature requests.
24
>
3-
> You don't need to stick to this, but please try to guide us to reproduce the errors or understand your feature requests.
5+
> Before submitting an issue, please consider these things first:
6+
> * Are you running the latest version? If not, try to upgrade.
7+
> * Did you check the [Setup Guide](http://mtxr.github.io/SQLTools/)?
8+
> * Did you check the logs in console (``Ctrl+` `` or select *View → Show Console*)?
49
510
### Issue Type
611

7-
* [ ] Feature Request
8-
* [ ] Bugfix/Errors
9-
* [ ] Questions
10-
* [ ] Other
12+
Feature Request |
13+
Bug/Error |
14+
Question |
15+
Other
1116

12-
### Prerequisites (For bugfixes)
17+
### Description
1318

14-
* [ ] Are you running the latest version?
15-
* [ ] Did you check the logs?
16-
* [ ] Did you check the Setup?
19+
[Description of the bug / feature / question]
1720

18-
### Description
21+
### Version
22+
23+
- *SQLTools Version*: vX.Y.Z
24+
- *OS*: (Windows, Mac, Linux)
25+
- *RDBMS*: (MySQL, PostgreSQL, Oracle, MSSQL, SQLite, Vertica, ...)
1926

20-
[Description of the bug or feature]
27+
> You can get this information by executing `ST: About` from Sublime `Command Palette`.
2128
2229
### Steps to Reproduce (For bugfixes)
2330

@@ -28,11 +35,3 @@
2835
**Expected behavior:** [What you expected to happen]
2936

3037
**Actual behavior:** [What actually happened]
31-
32-
### Versions
33-
34-
- *Version*: vX.Y.Z
35-
- *OS*: ...
36-
- *RDBMS*: (MySQL, PostgreSQL, Oracle, MSSQL, SQLite, Vertica, ...)
37-
38-
You can get this information from executing `ST: About` from Sublime `Command Palette`.

SQLTools.py

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

33
import sys
44
import os

messages.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@
1111
"0.9.3": "messages/v0.9.3.md",
1212
"0.9.4": "messages/v0.9.4.md",
1313
"0.9.5": "messages/v0.9.5.md",
14-
"0.9.6": "messages/v0.9.6.md"
14+
"0.9.6": "messages/v0.9.6.md",
15+
"0.9.7": "messages/v0.9.7.md"
1516
}

messages/v0.9.7.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## v0.9.7 Notes
2+
3+
### Fixes
4+
5+
* Completions not working with identifiers containing $ symbol [#152]

0 commit comments

Comments
 (0)