From ddcc5c3ee3a26e40aa0989de8b3e7667391d023b Mon Sep 17 00:00:00 2001 From: Evandro Leopoldino Goncalves Date: Thu, 18 Jan 2024 18:52:49 +0100 Subject: [PATCH 1/4] updates readme --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index 47b1604..0f4813b 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,6 @@ A small library with useful methods to handle Lua's table when it's working like an Array.
For docs, see: https://evandrolg.github.io/array.lua/ -[![Build -Status](https://travis-ci.org/EvandroLG/array.lua.svg?branch=master)](https://travis-ci.org/EvandroLG/array.lua) - ## Installation To install array, run: ```sh From fc9fd2f211e43b876868e5de4c10c3a454066e31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Evandro=20Leopoldino=20Gon=C3=A7alves?= Date: Thu, 18 Jan 2024 19:01:50 +0100 Subject: [PATCH 2/4] Update init.lua --- src/array/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/array/init.lua b/src/array/init.lua index 020d3db..210c5bd 100644 --- a/src/array/init.lua +++ b/src/array/init.lua @@ -3,7 +3,7 @@ local utils = require('array.utils') local array array = { - __VERSION = '1.3.5', + __VERSION = '1.3.6', __DESCRIPTION = "A small library with useful methods to handle Lua's table when it's working like an Array", __LICENSE = [[ The MIT License (MIT) From 589afde5ed94fa5a4530eb8b2b30722d79ef2386 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Evandro=20Leopoldino=20Gon=C3=A7alves?= Date: Fri, 8 Mar 2024 22:36:10 +0100 Subject: [PATCH 3/4] fixes issue with the github action --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3a48f01..1dcbdbd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,12 +10,12 @@ on: jobs: test: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest strategy: fail-fast: false matrix: - luaVersion: ["5.3"] + luaVersion: ["5.4"] steps: - name: Checkout @@ -32,4 +32,4 @@ jobs: - name: Run unit tests run: | - LUA_PATH="./src/?.lua;./src/?/init.lua;./src/array/?.lua;;" lua test.lua + LUA_PATH="./src/?.lua;./src/?/init.lua;;$(luarocks path --lr-path)" lua test.lua From c8fa4109538ca9ce6833ac5907844e6efaa4dbdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Evandro=20Leopoldino=20Gon=C3=A7alves?= Date: Fri, 8 Mar 2024 22:39:58 +0100 Subject: [PATCH 4/4] Update test.lua --- test.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.lua b/test.lua index d0fc2dc..e5b5a3f 100644 --- a/test.lua +++ b/test.lua @@ -2,7 +2,7 @@ local test = require 'simple_test' local array = require 'array' test('meta infos', function(a) - a.equal(array.__VERSION, '1.3.5') + a.equal(array.__VERSION, '1.3.6') a.equal(array.__DESCRIPTION, "A small library with useful methods to handle Lua's table when it's working like an Array") end)