From 6bf81c58db7d0aec09cad6916e1eb8f75db28658 Mon Sep 17 00:00:00 2001 From: "mcanouil-dev[bot]" <211049963+mcanouil-dev[bot]@users.noreply.github.com> Date: Sun, 6 Sep 2026 15:34:30 +0000 Subject: [PATCH] ci: bump version for release :rocket: --- CHANGELOG.md | 2 ++ CITATION.cff | 4 ++-- 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, 15 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64af61d..a9ef180 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 2.1.0 (2026-09-06) + - feat: Add the `schema-check` module. It checks a document and a shortcode call against the extension's `_schema.yml`, and it reports what it finds. ## 2.0.0 (2026-09-05) diff --git a/CITATION.cff b/CITATION.cff index 6717b27..e0f95dd 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -8,5 +8,5 @@ authors: orcid: "https://orcid.org/0000-0002-3396-4549" repository-code: "https://github.com/mcanouil/quarto-lua-modules" license: MIT -date-released: "2026-09-05" -version: 2.0.0 +date-released: "2026-09-06" +version: 2.1.0 diff --git a/modules/colour.lua b/modules/colour.lua index 78af593..e34bf9a 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.0.0 +--- @version 2.1.0 local M = {} diff --git a/modules/content-extraction.lua b/modules/content-extraction.lua index 5de716e..f57946f 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.0.0 +--- @version 2.1.0 local M = {} diff --git a/modules/git.lua b/modules/git.lua index 1d39980..52dea6f 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.0.0 +--- @version 2.1.0 local M = {} diff --git a/modules/html.lua b/modules/html.lua index 9c76ecc..0175f7e 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.0.0 +--- @version 2.1.0 local M = {} diff --git a/modules/logging.lua b/modules/logging.lua index ebcc3a7..155d425 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.0.0 +--- @version 2.1.0 local M = {} diff --git a/modules/lookup.lua b/modules/lookup.lua index f616a7c..71a2b86 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.0.0 +--- @version 2.1.0 local M = {} diff --git a/modules/metadata.lua b/modules/metadata.lua index 77ed7d4..49e8614 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.0.0 +--- @version 2.1.0 local M = {} diff --git a/modules/pandoc-helpers.lua b/modules/pandoc-helpers.lua index 4ce0732..ce192e4 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.0.0 +--- @version 2.1.0 local M = {} diff --git a/modules/paths.lua b/modules/paths.lua index e573fe1..5a2440d 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.0.0 +--- @version 2.1.0 local M = {} diff --git a/modules/schema-check.lua b/modules/schema-check.lua index 536a950..4ea93f7 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.0.0 +--- @version 2.1.0 --- --- Holds the wiring that every extension would otherwise copy: read --- `_schema.yml` once, check the document configuration against it, check one diff --git a/modules/string.lua b/modules/string.lua index eb233fe..e3bacd8 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.0.0 +--- @version 2.1.0 local M = {}