diff --git a/CHANGELOG.md b/CHANGELOG.md index c3e4854..2e2bba0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.5] - 2024-07-17 + ## [1.0.4] - 2024-07-10 ### Added - PDF V4 @@ -187,7 +189,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Few issues on dark mode and event listener -[unreleased]: https://github.com/RSickenberg/rsickenberg.me/compare/v1.0.4...HEAD +[unreleased]: https://github.com/RSickenberg/rsickenberg.me/compare/v1.0.5...HEAD +[1.0.5]: https://github.com/RSickenberg/rsickenberg.me/compare/v1.0.4...v1.0.5 [1.0.4]: https://github.com/RSickenberg/rsickenberg.me/compare/v1.0.3...v1.0.4 [1.0.3]: https://github.com/RSickenberg/rsickenberg.me/compare/v1.0.2...v1.0.3 [1.0.2]: https://github.com/RSickenberg/rsickenberg.me/compare/v1.0.1...v1.0.2 diff --git a/package.json b/package.json index 3dd8bd8..901b251 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@rsickenberg/portfolio-next", "type": "module", - "version": "1.0.4", + "version": "1.0.5", "private": true, "repository": { "type": "git", @@ -60,14 +60,38 @@ "preset": { "name": "conventionalcommits", "types": [ - {"type": "feat", "section": "Features"}, - {"type": "fix", "section": "Bug Fixes"}, - {"type": "chore", "section": "Chore"}, - {"type": "docs", "section": "Docs"}, - {"type": "style", "section": "Misc"}, - {"type": "refactor", "section": "Refactoring"}, - {"type": "perf", "section": "Optimisations"}, - {"type": "test", "seciton": "Tests"} + { + "type": "feat", + "section": "Features" + }, + { + "type": "fix", + "section": "Bug Fixes" + }, + { + "type": "chore", + "section": "Chore" + }, + { + "type": "docs", + "section": "Docs" + }, + { + "type": "style", + "section": "Misc" + }, + { + "type": "refactor", + "section": "Refactoring" + }, + { + "type": "perf", + "section": "Optimisations" + }, + { + "type": "test", + "seciton": "Tests" + } ] }, "infile": "CHANGELOG.md",