Skip to content

Commit

Permalink
Pump version number to 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
stefaneberl committed Sep 3, 2018
1 parent e2a581f commit 8534aec
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# OpenKit Java Changelog

## [Unreleased](https://github.com/Dynatrace/openkit-dotnet/compare/v1.1.0...HEAD)
## [Unreleased](https://github.com/Dynatrace/openkit-dotnet/compare/v1.1.1...HEAD)

## 1.1.1 [Release date: 2018-09-03]
[GitHub Releases](https://github.com/Dynatrace/openkit-java/releases/tag/v1.1.1)

### Changed
- Fix wrong Session start time
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildscript {
}

group 'com.dynatrace.openkit'
version '1.1.0'
version '1.1.1'

def buildNumber = System.getenv()['BUILD_NUMBER']
if (version.endsWith('-SNAPSHOT') && buildNumber != null) {
Expand Down
4 changes: 2 additions & 2 deletions docs/example.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ customize OpenKit. This includes device specific information like operating syst

| Method Name | Description | Default Value |
| ------------- | ------------- | ---------- |
| `withApplicationVersion` | sets the application version | `"1.1.0"` |
| `withOperatingSystem` | sets the operating system name | `"OpenKit 1.1.0"` |
| `withApplicationVersion` | sets the application version | `"1.1.1"` |
| `withOperatingSystem` | sets the operating system name | `"OpenKit 1.1.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 Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ private OpenKitConstants() {
public static final String WEBREQUEST_TAG_HEADER = "X-dynaTrace";

// default values used in configuration
public static final String DEFAULT_APPLICATION_VERSION = "1.1.0";
public static final String DEFAULT_APPLICATION_VERSION = "1.1.1";
public static final String DEFAULT_OPERATING_SYSTEM = "OpenKit " + DEFAULT_APPLICATION_VERSION;
public static final String DEFAULT_MANUFACTURER = "Dynatrace";
public static final String DEFAULT_MODEL_ID = "OpenKitDevice";
Expand Down

0 comments on commit 8534aec

Please sign in to comment.