From 6eeb5261a120a728e4325bddc121d3c1a6d40a1f Mon Sep 17 00:00:00 2001 From: "mcanouil-dev[bot]" <211049963+mcanouil-dev[bot]@users.noreply.github.com> Date: Sun, 6 Sep 2026 20:34:06 +0000 Subject: [PATCH] ci: bump version for release :rocket: --- CHANGELOG.md | 2 ++ CITATION.cff | 2 +- modules/colour.lua | 2 +- modules/content-extraction.lua | 2 +- modules/git.lua | 2 +- modules/html.lua | 2 +- modules/logging.lua | 2 +- modules/lookup.lua | 2 +- modules/metadata.lua | 2 +- modules/pandoc-helpers.lua | 2 +- modules/paths.lua | 2 +- modules/schema-check.lua | 2 +- modules/string.lua | 2 +- 13 files changed, 14 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e123095..1ad4f94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 2.2.0 (2026-09-06) + - fix: The `schema-check` module could not find the schema of an extension whose entry points are in a subdirectory. `new` now takes the schema path as an optional third argument, and it still reads `_schema.yml` when the argument is absent. ## 2.1.0 (2026-09-06) diff --git a/CITATION.cff b/CITATION.cff index e0f95dd..0d7b50f 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -9,4 +9,4 @@ authors: repository-code: "https://github.com/mcanouil/quarto-lua-modules" license: MIT date-released: "2026-09-06" -version: 2.1.0 +version: 2.2.0 diff --git a/modules/colour.lua b/modules/colour.lua index e34bf9a..f30d01f 100644 --- a/modules/colour.lua +++ b/modules/colour.lua @@ -3,7 +3,7 @@ --- @license MIT --- @copyright 2026 Mickaël Canouil --- @author Mickaël Canouil ---- @version 2.1.0 +--- @version 2.2.0 local M = {} diff --git a/modules/content-extraction.lua b/modules/content-extraction.lua index f57946f..4104201 100644 --- a/modules/content-extraction.lua +++ b/modules/content-extraction.lua @@ -3,7 +3,7 @@ --- @license MIT --- @copyright 2026 Mickaël Canouil --- @author Mickaël Canouil ---- @version 2.1.0 +--- @version 2.2.0 local M = {} diff --git a/modules/git.lua b/modules/git.lua index 52dea6f..f848a18 100644 --- a/modules/git.lua +++ b/modules/git.lua @@ -3,7 +3,7 @@ --- @license MIT --- @copyright 2026 Mickaël Canouil --- @author Mickaël Canouil ---- @version 2.1.0 +--- @version 2.2.0 local M = {} diff --git a/modules/html.lua b/modules/html.lua index 0175f7e..4076864 100644 --- a/modules/html.lua +++ b/modules/html.lua @@ -3,7 +3,7 @@ --- @license MIT --- @copyright 2026 Mickaël Canouil --- @author Mickaël Canouil ---- @version 2.1.0 +--- @version 2.2.0 local M = {} diff --git a/modules/logging.lua b/modules/logging.lua index 155d425..c20a1b0 100644 --- a/modules/logging.lua +++ b/modules/logging.lua @@ -3,7 +3,7 @@ --- @license MIT --- @copyright 2026 Mickaël Canouil --- @author Mickaël Canouil ---- @version 2.1.0 +--- @version 2.2.0 local M = {} diff --git a/modules/lookup.lua b/modules/lookup.lua index 71a2b86..bee125a 100644 --- a/modules/lookup.lua +++ b/modules/lookup.lua @@ -3,7 +3,7 @@ --- @license MIT --- @copyright 2026 Mickaël Canouil --- @author Mickaël Canouil ---- @version 2.1.0 +--- @version 2.2.0 local M = {} diff --git a/modules/metadata.lua b/modules/metadata.lua index 49e8614..776016a 100644 --- a/modules/metadata.lua +++ b/modules/metadata.lua @@ -3,7 +3,7 @@ --- @license MIT --- @copyright 2026 Mickaël Canouil --- @author Mickaël Canouil ---- @version 2.1.0 +--- @version 2.2.0 local M = {} diff --git a/modules/pandoc-helpers.lua b/modules/pandoc-helpers.lua index ce192e4..54812fc 100644 --- a/modules/pandoc-helpers.lua +++ b/modules/pandoc-helpers.lua @@ -3,7 +3,7 @@ --- @license MIT --- @copyright 2026 Mickaël Canouil --- @author Mickaël Canouil ---- @version 2.1.0 +--- @version 2.2.0 local M = {} diff --git a/modules/paths.lua b/modules/paths.lua index 5a2440d..a51782e 100644 --- a/modules/paths.lua +++ b/modules/paths.lua @@ -3,7 +3,7 @@ --- @license MIT --- @copyright 2026 Mickaël Canouil --- @author Mickaël Canouil ---- @version 2.1.0 +--- @version 2.2.0 local M = {} diff --git a/modules/schema-check.lua b/modules/schema-check.lua index 5168b4f..3f25ee7 100644 --- a/modules/schema-check.lua +++ b/modules/schema-check.lua @@ -3,7 +3,7 @@ --- @license MIT --- @copyright 2026 Mickaël Canouil --- @author Mickaël Canouil ---- @version 2.1.0 +--- @version 2.2.0 --- --- Holds the wiring that every extension would otherwise copy: read the schema --- once, check the document configuration against it, check one shortcode call diff --git a/modules/string.lua b/modules/string.lua index e3bacd8..d1e95e2 100644 --- a/modules/string.lua +++ b/modules/string.lua @@ -3,7 +3,7 @@ --- @license MIT --- @copyright 2026 Mickaël Canouil --- @author Mickaël Canouil ---- @version 2.1.0 +--- @version 2.2.0 local M = {}