diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8bca97c..b828b1a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - version: ["1.10.15", "2.10.7", "2.11.2", "3.0.1"] + version: ["1.10.15", "2.10.7", "2.11.2", "3.0.1", "3.6.2"] steps: - uses: actions/checkout@v4 - uses: ./.github/actions/setup-test diff --git a/README.md b/README.md index 9401e9a..e7e82a6 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Currently supported versions * 1.9 * 1.10 * 2.x -* 3.0.x - 3.4.x +* 3.0.x - 3.6.x ## `_G`lobal diff --git a/kit/loc.lua b/kit/loc.lua index 9ca8dc9..da66e0e 100644 --- a/kit/loc.lua +++ b/kit/loc.lua @@ -1,4 +1,4 @@ -local _VERSION = '3.4' +local _VERSION = '3.5' if rawget(_G,'kit') then if kit._VERSION == _VERSION then @@ -30,7 +30,7 @@ repeat elseif (0+maj) == 2 then if (0+min) <= 11 then break end -- <= 2.11 is acceptable elseif (0+maj) == 3 then - if (0+min) <= 4 then break end -- <= 3.4 is acceptable + if (0+min) <= 6 then break end -- <= 3.6 is acceptable end error(string.format("Version %s not supported", _TARANTOOL)) until true