From 69cb2f9232916845819c3c63c8b1d27c467f9c0b Mon Sep 17 00:00:00 2001 From: Reuh Date: Fri, 26 Dec 2025 15:24:14 +0100 Subject: [PATCH] =?UTF-8?q?docs:=20bump=20version=20to=201.1.=C2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- candran.can | 2 +- candran.lua | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ac241ea..b2fec22 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ end ```` -**Current status**: Candran is heavily used in several of my personal projects and works as expected. +**Current status**: Candran is stable ; I use it heavily used in several of my personal projects and maintain it. If there's no activity on the repo, it means there's no bug or new Lua version that requires an update. Candran is released under the MIT License (see ```LICENSE``` for details). diff --git a/candran.can b/candran.can index 29e73e2..f9f9397 100644 --- a/candran.can +++ b/candran.can @@ -1,5 +1,5 @@ local candran = { - VERSION = "1.0.0" + VERSION = "1.1.0" } package.loaded["candran"] = candran diff --git a/candran.lua b/candran.lua index 18004eb..c4691d3 100644 --- a/candran.lua +++ b/candran.lua @@ -1,4 +1,4 @@ -local candran = { ["VERSION"] = "1.0.0" } -- candran.can:2 +local candran = { ["VERSION"] = "1.1.0" } -- candran.can:2 package["loaded"]["candran"] = candran -- candran.can:4 local function _() -- candran.can:7 local candran = require("candran") -- ./candran/util.can:1