From 93403e3799158778c7a1166661886227b450cd98 Mon Sep 17 00:00:00 2001 From: Matthias Hochrieser Date: Tue, 6 Dec 2022 11:29:34 +0100 Subject: [PATCH] Pull request #238: RUM-7455 Raise version to 3.0 Merge in OP/openkit-dotnet from feature/RUM-7455-release-preparation-raise-version to main * commit '8dff25839ec31ea119b1d892eccb9355afa4bc97': RUM-7455 NET version raised in some files RUM-7455 Raise version to 3.0 GitOrigin-RevId: d6dcee9c98ea6f27a4d5c8f9b993e44afe2d35f6 --- CHANGELOG.md | 5 ++++- Directory.Build.props | 4 ++-- appveyor.yml | 2 +- docs/example.md | 4 ++-- src/Dynatrace.OpenKit/Dynatrace.OpenKit.csproj | 2 +- src/Dynatrace.OpenKit/Protocol/ProtocolConstants.cs | 2 +- 6 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9407608..d8f5875 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # OpenKit .NET Changelog -## [Unreleased](https://github.com/Dynatrace/openkit-dotnet/compare/v2.2.0...HEAD) +## [Unreleased](https://github.com/Dynatrace/openkit-dotnet/compare/v3.0.0...HEAD) + +## 3.0.0 [Release date: 2022-12-06] +[GitHub Releases](https://github.com/Dynatrace/openkit-dotnet/releases/tag/v3.0.0) ### Added - Support for .NET 6.0 diff --git a/Directory.Build.props b/Directory.Build.props index 7dc76a2..4bb3c1a 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -7,12 +7,12 @@ ../../keys/Dynatrace.OpenKit.NET.snk false true - 2.3.0.0-SNAPSHOT + 3.0.0.0 OpenKit .NET Dynatrace LLC Dynatrace LLC Dynatrace OpenKit SDK for .NET - (c) 2016-2020 Dynatrace LLC + (c) 2016-2022 Dynatrace LLC Apache-2.0 https://assets.dynatrace.com/global/resources/Signet_Logo_RGB_CP_512x512px.png https://github.com/Dynatrace/openkit-dotnet diff --git a/appveyor.yml b/appveyor.yml index 002adc1..cfc9852 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 2.3.0.{build} +version: 3.0.0.{build} # environment variables environment: diff --git a/docs/example.md b/docs/example.md index 03890fd..2f06d11 100644 --- a/docs/example.md +++ b/docs/example.md @@ -43,8 +43,8 @@ customize OpenKit. This includes device specific information like operating syst | Method Name | Description | Default Value | | ------------- | ------------- | ---------- | -| `WithApplicationVersion` | sets the application version | `"2.3.0"` | -| `WithOperatingSystem` | sets the operating system name | `"OpenKit 2.3.0"` | +| `WithApplicationVersion` | sets the application version | `"3.0.0"` | +| `WithOperatingSystem` | sets the operating system name | `"OpenKit 3.0.0"` | | `WithManufacturer` | sets the manufacturer | `"Dynatrace"` | | `WithModelId` | sets the model id | `"OpenKitDevice"` | | `WithBeaconCacheMaxRecordAge` | sets the maximum age of an entry in the beacon cache in milliseconds | 45 min | diff --git a/src/Dynatrace.OpenKit/Dynatrace.OpenKit.csproj b/src/Dynatrace.OpenKit/Dynatrace.OpenKit.csproj index e5f3c08..bebb32c 100644 --- a/src/Dynatrace.OpenKit/Dynatrace.OpenKit.csproj +++ b/src/Dynatrace.OpenKit/Dynatrace.OpenKit.csproj @@ -18,7 +18,7 @@ false Dynatrace.OpenKit.NET - 2.3.0 + 3.0.0 diff --git a/src/Dynatrace.OpenKit/Protocol/ProtocolConstants.cs b/src/Dynatrace.OpenKit/Protocol/ProtocolConstants.cs index 7dbec63..0f5534a 100644 --- a/src/Dynatrace.OpenKit/Protocol/ProtocolConstants.cs +++ b/src/Dynatrace.OpenKit/Protocol/ProtocolConstants.cs @@ -19,7 +19,7 @@ namespace Dynatrace.OpenKit.Protocol public static class ProtocolConstants { // version constants - public const string OpenKitVersion = "8.219.20300"; + public const string OpenKitVersion = "8.257.30000"; public const int ProtocolVersion = 3; public const int PlatformTypeOpenKit = 1; public const string AgentTechnologyType = "okdotnet";