Compare commits

...
This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.

1 commit

Author SHA1 Message Date
w0rp
b2702c6829
Bump the ALE version to v3.1.0 2021-02-11 19:47:40 +00:00
2 changed files with 2 additions and 1 deletions

View file

@ -157,7 +157,7 @@ function! ale#Queue(delay, ...) abort
endif
endfunction
let s:current_ale_version = [3, 0, 0]
let s:current_ale_version = [3, 1, 0]
" A function used to check for ALE features in files outside of the project.
function! ale#Has(feature) abort

View file

@ -1,4 +1,5 @@
Execute(Checks for versions below the current version should succeed):
AssertEqual 1, ale#Has('ale-3.1.0')
AssertEqual 1, ale#Has('ale-3.0.0')
AssertEqual 1, ale#Has('ale-2.7.0')
AssertEqual 1, ale#Has('ale-2.6.0')