From 5b50003cd309dbe8d56fa5ca740b860031cba90e Mon Sep 17 00:00:00 2001 From: Ben Browning Date: Tue, 10 Dec 2024 09:28:35 -0500 Subject: [PATCH 1/2] Update CHANGELOG.md for release v0.6.2 Ensuring our release notes are accurate for the imminent release v0.6.2. Signed-off-by: Ben Browning --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f56e2c6..4c7f5a12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.6.2 + +### Fixes + +* Fixed a bug in our version specification of `docling` and `docling_parse` dependencies that were causing new installs of InstructLab to pull in incompatible versions of these. We also fixed a similar bug in the `mypy` dependency, but that one only impacts developers of SDG as opposed to users of InstructLab. + ## v0.6.1 ### Fixes From fe31e7d3f8cddbd9d0e8e1b38094efde68bad79d Mon Sep 17 00:00:00 2001 From: Ben Browning Date: Tue, 10 Dec 2024 12:23:59 -0500 Subject: [PATCH 2/2] Loosen up md-lint so we can write changelogs Signed-off-by: Ben Browning --- .markdownlint-cli2.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.markdownlint-cli2.yaml b/.markdownlint-cli2.yaml index c248cb45..a94d4334 100644 --- a/.markdownlint-cli2.yaml +++ b/.markdownlint-cli2.yaml @@ -7,10 +7,12 @@ config: code-block-style: false no-duplicate-header: false single-trailing-newline: false + no-duplicate-heading: false globs: - "**/*.md" ignores: - ".github/**" + - ".tox/**" - "venv/**" - ".venv/**" - "**/testdata/**"