Skip to content

Commit 8534aec

Browse files
committed
Pump version number to 1.1.1
1 parent e2a581f commit 8534aec

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# OpenKit Java Changelog
22

3-
## [Unreleased](https://github.com/Dynatrace/openkit-dotnet/compare/v1.1.0...HEAD)
3+
## [Unreleased](https://github.com/Dynatrace/openkit-dotnet/compare/v1.1.1...HEAD)
4+
5+
## 1.1.1 [Release date: 2018-09-03]
6+
[GitHub Releases](https://github.com/Dynatrace/openkit-java/releases/tag/v1.1.1)
47

58
### Changed
69
- Fix wrong Session start time

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ buildscript {
1212
}
1313

1414
group 'com.dynatrace.openkit'
15-
version '1.1.0'
15+
version '1.1.1'
1616

1717
def buildNumber = System.getenv()['BUILD_NUMBER']
1818
if (version.endsWith('-SNAPSHOT') && buildNumber != null) {

docs/example.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ customize OpenKit. This includes device specific information like operating syst
5454

5555
| Method Name | Description | Default Value |
5656
| ------------- | ------------- | ---------- |
57-
| `withApplicationVersion` | sets the application version | `"1.1.0"` |
58-
| `withOperatingSystem` | sets the operating system name | `"OpenKit 1.1.0"` |
57+
| `withApplicationVersion` | sets the application version | `"1.1.1"` |
58+
| `withOperatingSystem` | sets the operating system name | `"OpenKit 1.1.1"` |
5959
| `withManufacturer` | sets the manufacturer | `"Dynatrace"` |
6060
| `withModelID` | sets the model id | `"OpenKitDevice"` |
6161
| `withBeaconCacheMaxRecordAge` | sets the maximum age of an entry in the beacon cache in milliseconds | 1 h 45 min |

src/main/java/com/dynatrace/openkit/api/OpenKitConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ private OpenKitConstants() {
3535
public static final String WEBREQUEST_TAG_HEADER = "X-dynaTrace";
3636

3737
// default values used in configuration
38-
public static final String DEFAULT_APPLICATION_VERSION = "1.1.0";
38+
public static final String DEFAULT_APPLICATION_VERSION = "1.1.1";
3939
public static final String DEFAULT_OPERATING_SYSTEM = "OpenKit " + DEFAULT_APPLICATION_VERSION;
4040
public static final String DEFAULT_MANUFACTURER = "Dynatrace";
4141
public static final String DEFAULT_MODEL_ID = "OpenKitDevice";

0 commit comments

Comments
 (0)