diff --git a/CHANGELOG.json b/CHANGELOG.json index 13f46370..2880a4cb 100644 --- a/CHANGELOG.json +++ b/CHANGELOG.json @@ -1,7 +1,7 @@ { "nextVersion" : { "major" : 0, - "minor" : 24, + "minor" : 25, "patch" : 0, "preReleaseParts" : [ ], "buildMetaDataParts" : [ ], @@ -12,7 +12,7 @@ }, "lastVersion" : { "major" : 0, - "minor" : 23, + "minor" : 24, "patch" : 0, "preReleaseParts" : [ ], "buildMetaDataParts" : [ ], @@ -22,6 +22,67 @@ "stable" : true }, "tags" : [ { + "version" : { + "major" : 0, + "minor" : 24, + "patch" : 0, + "preReleaseParts" : [ ], + "buildMetaDataParts" : [ ], + "preRelease" : "", + "buildMetaData" : "", + "initialDevelopment" : true, + "stable" : true + }, + "releaseDate" : "2023-06-19 12:02:56.000 +0200", + "sections" : [ { + "title" : "Features", + "commits" : [ { + "hashFull" : "7092837c4422b3de7f16438b63103c9a1e88b853", + "hash" : "7092837c4422b3d", + "hash7" : "7092837", + "hash8" : "7092837c", + "commitTime" : "2023-06-19 12:02:56.000 +0200", + "commitTimeLong" : 1687168976, + "message" : "feat: expose module registration for Databind codec\n\nThis change enables the registration of custom modules for a DatabindCodec.\nIt also improves the selection logic for the deserialization codec.\n", + "merge" : false, + "authorIdent" : { + "when" : "2023-06-19 10:44:24.000 +0200", + "name" : "Pascal Krause", + "email" : "pascal.krause@sap.com" + }, + "committerIdent" : { + "when" : "2023-06-19 12:02:56.000 +0200", + "name" : "Pascal", + "email" : "23715608+pk-work@users.noreply.github.com" + }, + "quickActions" : { }, + "closeIssues" : [ ], + "subjectIssues" : [ ], + "bodyIssues" : [ ], + "mentions" : [ ], + "locales" : [ ], + "defaultLang" : "en", + "commitUrl" : "https://github.com/SAP/neonbee/commit/7092837c4422b3de7f16438b63103c9a1e88b853", + "commitType" : "feat", + "commitPackage" : null, + "commitScope" : null, + "commitSubject" : "expose module registration for Databind codec", + "commitBody" : "This change enables the registration of custom modules for a DatabindCodec.\nIt also improves the selection logic for the deserialization codec.", + "attention" : false, + "breakingChange" : false, + "deprecated" : false, + "commitIssue" : null, + "localeMap" : null, + "firstLocaleCommitType" : null, + "firstLocaleCommitScope" : null, + "rawCommitType" : "feat", + "rawCommitScope" : null, + "rawCommitSubject" : "expose module registration for Databind codec", + "messageTitle" : "feat: expose module registration for Databind codec", + "messageBody" : "This change enables the registration of custom modules for a DatabindCodec.\nIt also improves the selection logic for the deserialization codec." + } ] + } ] + }, { "version" : { "major" : 0, "minor" : 23, @@ -33,7 +94,7 @@ "initialDevelopment" : true, "stable" : true }, - "releaseDate" : "2023-06-13 11:27:34.000 +0200", + "releaseDate" : "2023-06-14 09:00:41.000 +0200", "sections" : [ { "title" : "Bug Fixes", "commits" : [ { diff --git a/CHANGELOG.md b/CHANGELOG.md index a9f2d7c6..696edb51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Changelog -## 0.23.0 (2023-06-13) +## 0.24.0 (2023-06-19) + +### Features + +- expose module registration for Databind codec ([7092837c](https://github.com/SAP/neonbee/commit/7092837c4422b3de7f16438b63103c9a1e88b853)) + + +## 0.23.0 (2023-06-14) ### Bug Fixes diff --git a/build.gradle b/build.gradle index fadc9914..7984eb77 100644 --- a/build.gradle +++ b/build.gradle @@ -21,7 +21,7 @@ plugins { } group = 'io.neonbee' -version = '0.23.1-SNAPSHOT' +version = '0.24.0' mainClassName = 'io.neonbee.Launcher' archivesBaseName = 'neonbee-core' sourceCompatibility = 11