Skip to content

Commit b90c383

Browse files
committed
prepare release 1.1.0
1 parent d78ce72 commit b90c383

3 files changed

Lines changed: 25 additions & 8 deletions

File tree

README.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,15 @@ The plugin has two modes:
7878

7979
- one that uses `libclang` with its python bindings. This is the better method
8080
as it fully utilizes saving compilation database which makes your completions
81-
blazingly fast. Unfortunately it only works for Linux. Please help me to
82-
bring it to other platforms if you know more about Windows or OSX than I do.
83-
There is an issue for Windows opened
84-
[here](https://github.com/niosus/EasyClangComplete/issues/4).
81+
blazingly fast. It is a default method for Linux and OSX. It is also unit
82+
tested to complete STL functions on both platforms. Please help me to bring
83+
it to Windows. Check out this
84+
[discussion](https://github.com/niosus/EasyClangComplete/issues/4).
8585
- `clang -Xclang -code-completion-at` run from the command line. The plugin
8686
parses the output from a process that runs the above command. This is the
87-
default method for Windows and OSX. Tested on all platforms (see
88-
[Testing](#tests) part). Slower than method with `libclang`. Will be
89-
deprecated when we solve issue #4.
87+
default method for Windows. Tested on all platforms (see [Testing](#tests)
88+
part). Slower than method with `libclang`. Will be deprecated when we solve
89+
issue #4.
9090

9191
This plugin is intended to be easy to use. It should autocomplete STL out of
9292
the box and you should just add the folders your project uses to `include_dirs`
@@ -164,6 +164,11 @@ If you are an experienced python developer and find that something in my code
164164
sucks completely - **DO** tell me. Python is not my main language and I am
165165
always willing to learn.
166166

167+
Some functionality is there only because of the help of the following users:
168+
169+
- @Ventero for fixing `libclang` search on OSX
170+
- @riazanovskiy for hints on `clang-3.8`
171+
167172
## Tests ##
168173
I have tried to cover most crucial functionality with unit tests using
169174
[UnitTesting](https://github.com/randy3k/UnitTesting) Sublime Text plugin.

messages.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@
77
"1.0.8": "messages/st3-1.0.8.md",
88
"1.0.9": "messages/st3-1.0.9.md",
99
"1.0.10": "messages/st3-1.0.10.md",
10-
"1.0.12": "messages/st3-1.0.12.md"
10+
"1.0.12": "messages/st3-1.0.12.md",
11+
"1.1.0": "messages/st3-1.1.0.md"
1112
}

messages/st3-1.1.0.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
What's new:
2+
- OSX now uses `libclang` by default. You can use your default clang
3+
installation or install llvm version from brew.
4+
- Fix for using `libclang` with `clang-3.8` on Linux.
5+
- Fix a bug where a file that has syntax C++ but was never saved before would
6+
generate errors.
7+
- Add unit tests for completions using `libclang` for OSX and Linux.
8+
9+
Big thanks go to users:
10+
- @Ventero for fixing `libclang` search on OSX
11+
- @riazanovskiy for hints on `clang-3.8`

0 commit comments

Comments
 (0)