diff --git a/CHANGELOG.md b/CHANGELOG.md index e7e977f..01655ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 2.0.0 (2026-09-05) + - refactor: Move `has_extension` and `is_markdown` from the `lookup` module into the `paths` module. Both functions ask a question about a path, so `paths` is where they belong. A consumer that called `lookup.has_extension` or `lookup.is_markdown` must call the same function on `paths`. ## 1.0.0 (2026-08-26) diff --git a/CITATION.cff b/CITATION.cff index 8f2815d..6717b27 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-08-26" -version: 1.0.0 +date-released: "2026-09-05" +version: 2.0.0 diff --git a/modules/colour.lua b/modules/colour.lua index 51d0a06..78af593 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 1.0.0 +--- @version 2.0.0 local M = {} diff --git a/modules/content-extraction.lua b/modules/content-extraction.lua index e63391f..5de716e 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 1.0.0 +--- @version 2.0.0 local M = {} diff --git a/modules/git.lua b/modules/git.lua index 7b11f33..1d39980 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 1.0.0 +--- @version 2.0.0 local M = {} diff --git a/modules/html.lua b/modules/html.lua index 8212cc5..9c76ecc 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 1.0.0 +--- @version 2.0.0 local M = {} diff --git a/modules/logging.lua b/modules/logging.lua index a538809..ebcc3a7 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 1.0.0 +--- @version 2.0.0 local M = {} diff --git a/modules/lookup.lua b/modules/lookup.lua index 75f471c..f616a7c 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 1.0.0 +--- @version 2.0.0 local M = {} diff --git a/modules/metadata.lua b/modules/metadata.lua index 2e1b6d5..77ed7d4 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 1.0.0 +--- @version 2.0.0 local M = {} diff --git a/modules/pandoc-helpers.lua b/modules/pandoc-helpers.lua index aad35cf..4ce0732 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 1.0.0 +--- @version 2.0.0 local M = {} diff --git a/modules/paths.lua b/modules/paths.lua index 9ebbd73..e573fe1 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 1.0.0 +--- @version 2.0.0 local M = {} diff --git a/modules/string.lua b/modules/string.lua index 597f6a8..eb233fe 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 1.0.0 +--- @version 2.0.0 local M = {}