Skip to content

Commit

Permalink
Pull request #238: RUM-7455 Raise version to 3.0
Browse files Browse the repository at this point in the history
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
  • Loading branch information
TheHighriser authored and openkitdt committed Dec 6, 2022
1 parent ffe40d4 commit 93403e3
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<AssemblyOriginatorKeyFile>../../keys/Dynatrace.OpenKit.NET.snk</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<PackageVersion>2.3.0.0-SNAPSHOT</PackageVersion>
<PackageVersion>3.0.0.0</PackageVersion>
<Title>OpenKit .NET</Title>
<Authors>Dynatrace LLC</Authors>
<Company>Dynatrace LLC</Company>
<Description>Dynatrace OpenKit SDK for .NET</Description>
<Copyright>(c) 2016-2020 Dynatrace LLC</Copyright>
<Copyright>(c) 2016-2022 Dynatrace LLC</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageIconUrl>https://assets.dynatrace.com/global/resources/Signet_Logo_RGB_CP_512x512px.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/Dynatrace/openkit-dotnet</PackageProjectUrl>
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 2.3.0.{build}
version: 3.0.0.{build}

# environment variables
environment:
Expand Down
4 changes: 2 additions & 2 deletions docs/example.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
2 changes: 1 addition & 1 deletion src/Dynatrace.OpenKit/Dynatrace.OpenKit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<IsPackable>false</IsPackable>
<!-- set the package id, otherwise it's equal to the AssemblyName -->
<PackageId>Dynatrace.OpenKit.NET</PackageId>
<Version>2.3.0</Version>
<Version>3.0.0</Version>
</PropertyGroup>

<!-- generate full debug information when coverage is built -->
Expand Down
2 changes: 1 addition & 1 deletion src/Dynatrace.OpenKit/Protocol/ProtocolConstants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 93403e3

Please sign in to comment.