From 70c28a5bb547e521aaf476ae8464d3386715bbe9 Mon Sep 17 00:00:00 2001
From: Tomas Bjerre <tomas.bjerre85@gmail.com>
Date: Thu, 3 Oct 2024 16:18:08 +0200
Subject: [PATCH] feat: git-changelog-lib 2.3.2 and Java 17

---
 .../CHANGELOG_custom.md                            |  6 ++++++
 .../CHANGELOG_ignoreCommitsOlderThan.md            |  8 +++++++-
 .../CHANGELOG_inline.md                            | 14 +++++++++++++-
 .../CHANGELOG_mixed.md                             |  8 +++++++-
 .../CHANGELOG_settings.md                          |  4 ++++
 pom.xml                                            |  6 +++---
 6 files changed, 40 insertions(+), 6 deletions(-)

diff --git a/git-changelog-maven-plugin-example/CHANGELOG_custom.md b/git-changelog-maven-plugin-example/CHANGELOG_custom.md
index 1a2b1e1..c7b0108 100644
--- a/git-changelog-maven-plugin-example/CHANGELOG_custom.md
+++ b/git-changelog-maven-plugin-example/CHANGELOG_custom.md
@@ -4,6 +4,12 @@ Changelog of Git Changelog Maven plugin.
 
 ## Unreleased
 ### No issue / 
+   feat: git-changelog-lib 2.2.0 and Java 17
+
+   chore: documenting java compatibility (refs #52)
+
+   docs: readme
+
    chore: building with java 21
 
    chore: updating changelog
diff --git a/git-changelog-maven-plugin-example/CHANGELOG_ignoreCommitsOlderThan.md b/git-changelog-maven-plugin-example/CHANGELOG_ignoreCommitsOlderThan.md
index db6ffe1..7f86f50 100644
--- a/git-changelog-maven-plugin-example/CHANGELOG_ignoreCommitsOlderThan.md
+++ b/git-changelog-maven-plugin-example/CHANGELOG_ignoreCommitsOlderThan.md
@@ -4,7 +4,13 @@ Changelog of Git Changelog Maven plugin.
 
 ## Unreleased
 ### No issue
-   chore: building with java 21 *2024-02-25 11:46:15*
+   feat: git-changelog-lib 2.2.0 and Java 17 *2024-10-03 14:18:08*
+
+   chore: documenting java compatibility (refs #52) *2024-10-03 14:17:20*
+
+   docs: readme *2024-02-25 19:25:38*
+
+   chore: building with java 21 *2024-02-25 11:49:42*
 
    chore: updating changelog *2024-02-10 07:05:56*
 
diff --git a/git-changelog-maven-plugin-example/CHANGELOG_inline.md b/git-changelog-maven-plugin-example/CHANGELOG_inline.md
index f8b0157..e3b21c5 100644
--- a/git-changelog-maven-plugin-example/CHANGELOG_inline.md
+++ b/git-changelog-maven-plugin-example/CHANGELOG_inline.md
@@ -5,7 +5,19 @@ Changelog of Git Changelog Maven plugin.
 ## Unreleased
 ### No issue
 
-[3cd0a53d4079d76](https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/3cd0a53d4079d76) Tomas Bjerre *2024-02-25 11:46:15*
+[711d7907e1b1304](https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/711d7907e1b1304) Tomas Bjerre *2024-10-03 14:18:08*
+
+feat: git-changelog-lib 2.2.0 and Java 17
+
+[bb98f52d8db927e](https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/bb98f52d8db927e) Tomas Bjerre *2024-10-03 14:17:20*
+
+chore: documenting java compatibility (refs #52)
+
+[41dc6791eaf2cc0](https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/41dc6791eaf2cc0) Tomas Bjerre *2024-02-25 19:25:38*
+
+docs: readme
+
+[5f78fd70373ef74](https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/5f78fd70373ef74) Tomas Bjerre *2024-02-25 11:49:42*
 
 chore: building with java 21
 
diff --git a/git-changelog-maven-plugin-example/CHANGELOG_mixed.md b/git-changelog-maven-plugin-example/CHANGELOG_mixed.md
index 0979ec9..540ffb0 100644
--- a/git-changelog-maven-plugin-example/CHANGELOG_mixed.md
+++ b/git-changelog-maven-plugin-example/CHANGELOG_mixed.md
@@ -4,7 +4,13 @@ Changelog of Git Changelog Maven plugin.
 
 ## These commits are not included in any tag
 ### These commits have not issue in their commit comment
-   chore: building with java 21 *11:46:15*
+   feat: git-changelog-lib 2.2.0 and Java 17 *14:18:08*
+
+   chore: documenting java compatibility (refs #52) *14:17:20*
+
+   docs: readme *19:25:38*
+
+   chore: building with java 21 *11:49:42*
 
    chore: updating changelog *07:05:56*
 
diff --git a/git-changelog-maven-plugin-example/CHANGELOG_settings.md b/git-changelog-maven-plugin-example/CHANGELOG_settings.md
index 804363b..96345bc 100644
--- a/git-changelog-maven-plugin-example/CHANGELOG_settings.md
+++ b/git-changelog-maven-plugin-example/CHANGELOG_settings.md
@@ -4,6 +4,10 @@ Changelog of git-changelog-maven-plugin.
 
 ## Next release ()
 
+### Features
+
+-  git-changelog-lib 2.2.0 and Java 17 ([711d7](https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/711d7907e1b1304) Tomas Bjerre)  
+
 ## 2.1.0 (2024-02-10)
 
 ### Features
diff --git a/pom.xml b/pom.xml
index 4f7e613..7253752 100644
--- a/pom.xml
+++ b/pom.xml
@@ -41,9 +41,9 @@
 
 	<properties>
 		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-		<maven.compiler.target>1.8</maven.compiler.target>
-		<maven.compiler.source>1.8</maven.compiler.source>
-		<changelog-lib>2.1.0</changelog-lib>
+		<maven.compiler.target>17</maven.compiler.target>
+		<maven.compiler.source>17</maven.compiler.source>
+		<changelog-lib>2.3.2</changelog-lib>
 	</properties>
 
 	<dependencies>