Skip to content

Commit

Permalink
Pull request #147: Pump version to 2.0.1
Browse files Browse the repository at this point in the history
Merge in OP/openkit-native from noissue/prepare-bugfix-release-2.0.1 to release/2.0

* commit '6b66531b7331b09d6a312ef788faf1dd6893a406':
  Update ProtocolConstants accordingly
  Pump version to 2.0.1

GitOrigin-RevId: b5d5e981a32cddc265880ad734d3e2d6dc68aca6
  • Loading branch information
stefaneberl authored and openkitdt committed Jul 6, 2021
1 parent 6583ad9 commit 96982ae
Show file tree
Hide file tree
Showing 5 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 Native ( C/C++ ) Changelog

## [Unreleased](https://github.com/Dynatrace/openkit-native/compare/v2.0.0...release/2.0)
## [Unreleased](https://github.com/Dynatrace/openkit-native/compare/v2.0.1...release/2.0)

## 2.0.1 [Release date: 2021-07-06]
[GitHub Releases](https://github.com/Dynatrace/openkit-native/releases/tag/v2.0.1)

### Added
- Add libatomic as additional link library if required.
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.0.0.{build}
version: 2.0.1.{build}

# Build with Visual Studio 2017
image: Visual Studio 2017
Expand Down
8 changes: 4 additions & 4 deletions docs/example.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ This includes device specific information like operating system, manufacturer, o
| Method Name | Description | Default Value |
| ------------- | ------------- | ---------- |
| `withApplicationVersion` | sets the application version | `"2.0.0"` |
| `withOperatingSystem` | sets the operating system name | `"OpenKit 2.0.0"` |
| `withApplicationVersion` | sets the application version | `"2.0.1"` |
| `withOperatingSystem` | sets the operating system name | `"OpenKit 2.0.1"` |
| `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 | 1 h 45 min |
Expand All @@ -118,8 +118,8 @@ When using the OpenKit C API, additional configuration can applied to the config
| Parameter Name | Description | Default Value |
| ------------- | ------------- | ---------- |
| `useApplicationVersionForConfiguration` | sets the application version | `"2.0.0"` is used when argument is `NULL` |
| `useOperatingSystemForConfiguration` | sets the operating system name | `"OpenKit 2.0.0"` is used when argument is `NULL` |
| `useApplicationVersionForConfiguration` | sets the application version | `"2.0.1"` is used when argument is `NULL` |
| `useOperatingSystemForConfiguration` | sets the operating system name | `"OpenKit 2.0.1"` is used when argument is `NULL` |
| `useManufacturerForConfiguration` | sets the manufacturer | `"Dynatrace"` is used when argument is `NULL` |
| `useModelIDForConfiguration` | sets the model id | `"OpenKitDevice"` is used when argument is `NULL` |
| `useBeaconCacheBehaviorForConfiguration` | sets caching behavior for the beacon cache | 1 h 45 min retention, 80 MB lower memory boundary, 100 MB upper memory boundary |
Expand Down
2 changes: 1 addition & 1 deletion src/protocol/ProtocolConstants.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ namespace protocol
constexpr const char* QUERY_KEY_NEW_SESSION = "ns";

// constant query parameter values
constexpr const char* OPENKIT_VERSION = "8.219.20000";
constexpr const char* OPENKIT_VERSION = "8.223.20001";
constexpr const char* PLATFORM_TYPE_OPENKIT = "1";
constexpr const char* AGENT_TECHNOLOGY_TYPE = "okc";
constexpr int32_t PROTOCOL_VERSION = 3;
Expand Down
2 changes: 1 addition & 1 deletion version.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2.0.0
version=2.0.1

0 comments on commit 96982ae

Please sign in to comment.