diff options
| author | w0rp | 2021-02-11 19:47:29 +0000 |
|---|---|---|
| committer | w0rp | 2021-02-11 19:47:40 +0000 |
| commit | b2702c68293d7fd548d87803ce61ce02f8821226 (patch) | |
| tree | 665856c0791f2152db86b9f395ddf3d15a6c80cc | |
| parent | 388cf3374312b05122151bc68691bf09a69ff840 (diff) | |
| download | ale-v3.1.x.tar.gz | |
Bump the ALE version to v3.1.0
v3.1.x| -rw-r--r-- | autoload/ale.vim | 2 | ||||
| -rw-r--r-- | test/test_ale_has.vader | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/autoload/ale.vim b/autoload/ale.vim index 3f59a6a48..97483b453 100644 --- a/autoload/ale.vim +++ b/autoload/ale.vim @@ -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 diff --git a/test/test_ale_has.vader b/test/test_ale_has.vader index 6e73641db..df4ca302b 100644 --- a/test/test_ale_has.vader +++ b/test/test_ale_has.vader @@ -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') |