Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion modules/colour.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {}

Expand Down
2 changes: 1 addition & 1 deletion modules/content-extraction.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {}

Expand Down
2 changes: 1 addition & 1 deletion modules/git.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {}

Expand Down
2 changes: 1 addition & 1 deletion modules/html.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {}

Expand Down
2 changes: 1 addition & 1 deletion modules/logging.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {}

Expand Down
2 changes: 1 addition & 1 deletion modules/lookup.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {}

Expand Down
2 changes: 1 addition & 1 deletion modules/metadata.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {}

Expand Down
2 changes: 1 addition & 1 deletion modules/pandoc-helpers.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {}

Expand Down
2 changes: 1 addition & 1 deletion modules/paths.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {}

Expand Down
2 changes: 1 addition & 1 deletion modules/schema-check.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion modules/string.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {}

Expand Down