Skip to content

Commit ea0b550

Browse files
committed
v2.1.8 released
1 parent 30d1b57 commit ea0b550

6 files changed

Lines changed: 96 additions & 8 deletions

File tree

README.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,18 @@ More information in SublimeCodeIntel/CodeIntelSources/`src <https://github.com/S
180180
What's New
181181
----------
182182

183+
v3.0.0 (unreleased, alpha):
184+
185+
+ Uses CodeIntel as an OOP command and package.
186+
187+
188+
v2.1.8 (2015-03-18):
189+
190+
+ Fixed issue with is_enabled()
191+
192+
+ Do not autocomplete on ENTER
193+
194+
183195
v2.1.7 (2015-01-26):
184196

185197
+ Fixed triggering issues with autocompletion and stop chars.

SublimeCodeIntel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"""
6363
from __future__ import print_function, unicode_literals
6464

65-
VERSION = "2.1.7"
65+
VERSION = "2.1.8"
6666

6767
import os
6868
import re

messages.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,6 @@
1717
"2.1.4": "messages/2.1.4.txt",
1818
"2.1.5": "messages/2.1.5.txt",
1919
"2.1.6": "messages/2.1.6.txt",
20-
"2.1.7": "messages/2.1.7.txt"
20+
"2.1.7": "messages/2.1.7.txt",
21+
"2.1.8": "messages/2.1.8.txt"
2122
}

messages/2.1.8.txt

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
SublimeCodeIntel v2.1.8 Release Notes
2+
=====================================
3+
4+
A full-featured code intelligence and smart autocomplete engine for Sublime Text.
5+
(Code intelligence plugin ported from Open Komodo Editor to Sublime Text)
6+
7+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! HELP WANTED !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
8+
!! Maintaining this project is hard, I do it in my spare time, but I'm !!
9+
!! basically all alone. If anyone is interested in contributing, please !!
10+
!! contact me. I really need much more help maintaining SublimeCodeIntel !!
11+
!! !!
12+
!! Follow me on twitter @germbravo !!
13+
!! You can find us at #sublimecodeintel on irc.freenode.net !!
14+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
15+
16+
** Restart Sublime Text after reading this **
17+
18+
In case of trouble, please read the Troubleshooting section in the README.
19+
20+
If you like SublimeCodeIntel, please make a donation: http://sublimecodeintel.github.io/SublimeCodeIntel/donate.html
21+
22+
23+
For more information:
24+
---------------------
25+
Please take the time to read the documentation:
26+
27+
* Online - http://sublimecodeintel.github.io/SublimeCodeIntel/
28+
29+
30+
CHANGES/FIXES
31+
-------------
32+
v2.1.8 (2015-03-18):
33+
34+
+ Fixed issue with is_enabled()
35+
36+
+ Do not autocomplete on ENTER

messages/3.0.0.txt

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
SublimeCodeIntel v3.0.0 Release Notes
2+
=====================================
3+
4+
A full-featured code intelligence and smart autocomplete engine for Sublime Text.
5+
(Code intelligence plugin ported from Open Komodo Editor to Sublime Text)
6+
7+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! HELP WANTED !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
8+
!! Maintaining this project is hard, I do it in my spare time, but I'm !!
9+
!! basically all alone. If anyone is interested in contributing, please !!
10+
!! contact me. I really need much more help maintaining SublimeCodeIntel !!
11+
!! !!
12+
!! Follow me on twitter @germbravo !!
13+
!! You can find us at #sublimecodeintel on irc.freenode.net !!
14+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
15+
16+
** Restart Sublime Text after reading this **
17+
18+
In case of trouble, please read the Troubleshooting section in the README.
19+
20+
If you like SublimeCodeIntel, please make a donation: http://sublimecodeintel.github.io/SublimeCodeIntel/donate.html
21+
22+
23+
For more information:
24+
---------------------
25+
Please take the time to read the documentation:
26+
27+
* Online - http://sublimecodeintel.github.io/SublimeCodeIntel/
28+
29+
30+
CHANGES/FIXES
31+
-------------
32+
v3.0.0 (unreleased, alpha):
33+
34+
+ Uses CodeIntel as an OOP command and package.

packages.json

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,20 @@
1313
"releases": [
1414
{
1515
"sublime_text": "<3000",
16-
"version": "2.1.7",
17-
"url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v2.1.7.zip",
18-
"date": "2015-01-26 00:00:00"
16+
"version": "2.1.8",
17+
"url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v2.1.8.zip",
18+
"date": "2015-03-18 00:00:00"
1919
},
2020
{
2121
"sublime_text": ">=3000",
22-
"version": "2.1.7+st3",
23-
"url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v2.1.7+st3.zip",
24-
"date": "2015-01-26 00:00:00"
22+
"version": "2.1.8+st3",
23+
"url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v2.1.8+st3.zip",
24+
"date": "2015-03-18 00:00:00"
25+
},
26+
{
27+
"version": "3.0.0-alpha1",
28+
"url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v3.0.0-alpha1.zip",
29+
"date": "2015-03-18 00:00:00"
2530
}
2631
]
2732
}

0 commit comments

Comments
 (0)