diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f7d17e8..f7e0be6 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.0.0-alpha.1" + ".": "1.0.0-alpha.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 1aeb49c..f1a5337 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## [1.0.0-alpha.2](https://github.com/inclusive-design/idrc-wcag-reporter/compare/v1.0.0-alpha.1...v1.0.0-alpha.2) (2024-07-10) + + +### Features + +* basic Caddy config ([#90](https://github.com/inclusive-design/idrc-wcag-reporter/issues/90)) ([38f0231](https://github.com/inclusive-design/idrc-wcag-reporter/commit/38f02318a01cbdf9ffdaafe6a69126a9100b557b)) +* configure CMS authentication ([#34](https://github.com/inclusive-design/idrc-wcag-reporter/issues/34)) ([574921f](https://github.com/inclusive-design/idrc-wcag-reporter/commit/574921fea98c5e1bf94dbea511a030a08e63303f)) +* link to issues from SC table (resolves [#75](https://github.com/inclusive-design/idrc-wcag-reporter/issues/75)) ([#84](https://github.com/inclusive-design/idrc-wcag-reporter/issues/84)) ([a41107b](https://github.com/inclusive-design/idrc-wcag-reporter/commit/a41107b7941b112ba2b1ea29f8c88a7b1a546a34)) + + +### Bug Fixes + +* **deps:** update dependency @11ty/eleventy to v3.0.0-alpha.11 ([#50](https://github.com/inclusive-design/idrc-wcag-reporter/issues/50)) ([222c012](https://github.com/inclusive-design/idrc-wcag-reporter/commit/222c0124b22208ee1a53a6de85ee28559736c190)) +* **deps:** update dependency @11ty/eleventy to v3.0.0-alpha.12 ([#58](https://github.com/inclusive-design/idrc-wcag-reporter/issues/58)) ([b3af9e3](https://github.com/inclusive-design/idrc-wcag-reporter/commit/b3af9e3ad4f53d341fd23dd1277191a59454901a)) +* **deps:** update dependency @11ty/eleventy to v3.0.0-alpha.13 ([#59](https://github.com/inclusive-design/idrc-wcag-reporter/issues/59)) ([b99a555](https://github.com/inclusive-design/idrc-wcag-reporter/commit/b99a5552f088e372ecf78fd3432ecdcc4771a40a)) +* **deps:** update dependency @11ty/eleventy to v3.0.0-alpha.14 ([#71](https://github.com/inclusive-design/idrc-wcag-reporter/issues/71)) ([9683ee3](https://github.com/inclusive-design/idrc-wcag-reporter/commit/9683ee326555cd067fc0aa0d9e142ee07400e16c)) +* **deps:** update dependency @11ty/eleventy to v3.0.0-alpha.16 ([#96](https://github.com/inclusive-design/idrc-wcag-reporter/issues/96)) ([86b7896](https://github.com/inclusive-design/idrc-wcag-reporter/commit/86b7896d0346281b70d62f29d3bd17f78e74558b)) + + +### Miscellaneous Chores + +* adjust version ([4c20cb1](https://github.com/inclusive-design/idrc-wcag-reporter/commit/4c20cb1304e7ae74b3897cf813e7579750fb4878)) + ## [1.0.0-alpha.1](https://github.com/inclusive-design/idrc-wcag-reporter/compare/v0.0.1...v1.0.0-alpha.1) (2024-04-08) diff --git a/package-lock.json b/package-lock.json index 94a0be8..668720f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "idrc-wcag-reporter", - "version": "1.0.0-alpha.1", + "version": "1.0.0-alpha.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "idrc-wcag-reporter", - "version": "1.0.0-alpha.1", + "version": "1.0.0-alpha.2", "license": "MIT", "dependencies": { "@11ty/eleventy": "3.0.0-alpha.16", diff --git a/package.json b/package.json index 55fc0b6..821723b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "idrc-wcag-reporter", - "version": "1.0.0-alpha.1", + "version": "1.0.0-alpha.2", "description": "Eleventy project to build accessibility conformance reports in HTML from issues written in Markdown.", "main": "eleventy.config.js", "scripts": { @@ -58,6 +58,8 @@ "lint-staged": { "*.css": "stylelint --fix", "*.{js,cjs,json,jsonc}": "biome check --write --no-errors-on-unmatched", - "*.md": ["markdownlint-cli2 --fix"] + "*.md": [ + "markdownlint-cli2 --fix" + ] } }