diff --git a/gradle.properties b/gradle.properties index 5203616e8..66435f5e8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -27,7 +27,7 @@ mavenGroupId = com.microsoft.graph mavenArtifactId = microsoft-graph-core mavenMajorVersion = 1 mavenMinorVersion = 0 -mavenPatchVersion = 1 +mavenPatchVersion = 2 mavenArtifactSuffix = nightliesUrl = http://dl.bintray.com/MicrosoftGraph/Maven diff --git a/readme.md b/readme.md index d16859cdd..22202dc8c 100644 --- a/readme.md +++ b/readme.md @@ -19,17 +19,19 @@ repository { dependency { // Include the sdk as a dependency - compile('com.microsoft.graph:microsoft-graph-core:1.0.1') + compile('com.microsoft.graph:microsoft-graph-core:1.0.2') } ``` ### 1.2 Install via Maven + Add the dependency in `dependencies` in pom.xml -```dependency + +```xml com.microsoft.graph microsoft-graph-core - 1.0.1 + 1.0.2 ``` diff --git a/src/main/java/com/microsoft/graph/httpcore/TelemetryHandler.java b/src/main/java/com/microsoft/graph/httpcore/TelemetryHandler.java index e9a84bbc4..37bbd7ac4 100644 --- a/src/main/java/com/microsoft/graph/httpcore/TelemetryHandler.java +++ b/src/main/java/com/microsoft/graph/httpcore/TelemetryHandler.java @@ -11,7 +11,7 @@ public class TelemetryHandler implements Interceptor{ public static final String SDK_VERSION = "SdkVersion"; - public static final String VERSION = "v1.0.1"; + public static final String VERSION = "v1.0.2"; public static final String GRAPH_VERSION_PREFIX = "graph-java-core"; public static final String JAVA_VERSION_PREFIX = "java"; public static final String CLIENT_REQUEST_ID = "client-request-id";