From b24fd13423656e14fa266405e1f238f0ec65cfb3 Mon Sep 17 00:00:00 2001 From: w0rp Date: Wed, 16 Oct 2019 17:23:31 +0100 Subject: [PATCH] Bump the ALE version --- autoload/ale.vim | 2 +- test/test_ale_has.vader | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/autoload/ale.vim b/autoload/ale.vim index 3a4e79c8..1664e710 100644 --- a/autoload/ale.vim +++ b/autoload/ale.vim @@ -156,7 +156,7 @@ function! ale#Queue(delay, ...) abort endif endfunction -let s:current_ale_version = [2, 5, 0] +let s:current_ale_version = [2, 6, 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 b2df01fe..b8a99103 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-2.6.0') AssertEqual 1, ale#Has('ale-2.5.0') AssertEqual 1, ale#Has('ale-2.4.0') AssertEqual 1, ale#Has('ALE-2.2.1')