diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e8b87f2..b6e2040c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # OpenKit Java Changelog -## [Unreleased](https://github.com/Dynatrace/openkit-java/compare/v3.1.0...HEAD) +## [Unreleased](https://github.com/Dynatrace/openkit-java/compare/v3.2.0...HEAD) + +## 3.2.0 [Release date: 2023-12-06] +[GitHub Releases](https://github.com/Dynatrace/openkit-java/releases/tag/v3.2.0) ### Changed - `Session.sendBizEvent` will always send an event regardless of the `DataCollectionLevel` diff --git a/docs/supported_versions.md b/docs/supported_versions.md index 3ccfd6e7..dfd0aae2 100644 --- a/docs/supported_versions.md +++ b/docs/supported_versions.md @@ -9,6 +9,7 @@ Example: Version `1.4.3` supersedes `1.4.2` and therefore only `1.4.3` will be m ## Active maintenance | Version | Bug fixes | Security fixes | Remarks | |---------|:------------------:|:------------------:|------------------| +| 3.2.X | :heavy_check_mark: | :heavy_check_mark: | | | 3.1.X | :heavy_check_mark: | :heavy_check_mark: | | | 3.0.X | :heavy_check_mark: | :heavy_check_mark: | | | 2.2.X | :heavy_check_mark: | :heavy_check_mark: | | diff --git a/docs/upgrade_guide.md b/docs/upgrade_guide.md index ea0afc03..ba0b48c5 100644 --- a/docs/upgrade_guide.md +++ b/docs/upgrade_guide.md @@ -1,5 +1,9 @@ # Upgrade guide for OpenKit Java +## OpenKit Java 3.1 to 3.2 +There are no breaking API changes and upgrading is straightforward, by [updating][update] the library +to the latest 3.2 release. + ## OpenKit Java 3.0 to 3.1 There are no breaking API changes and upgrading is straightforward, by [updating][update] the library to the latest 3.1 release. diff --git a/src/main/java/com/dynatrace/openkit/protocol/ProtocolConstants.java b/src/main/java/com/dynatrace/openkit/protocol/ProtocolConstants.java index 95dfc7dc..a989a304 100644 --- a/src/main/java/com/dynatrace/openkit/protocol/ProtocolConstants.java +++ b/src/main/java/com/dynatrace/openkit/protocol/ProtocolConstants.java @@ -19,7 +19,7 @@ public class ProtocolConstants { // version constants - public static final String OPENKIT_VERSION = "8.267.30200"; + public static final String OPENKIT_VERSION = "8.281.30200"; public static final int PROTOCOL_VERSION = 3; public static final int PLATFORM_TYPE_OPENKIT = 1; public static final String AGENT_TECHNOLOGY_TYPE = "okjava"; diff --git a/version.properties b/version.properties index 1d4cf382..ebdb0970 100644 --- a/version.properties +++ b/version.properties @@ -1 +1 @@ -version=3.2.0-SNAPSHOT \ No newline at end of file +version=3.2.0 \ No newline at end of file