Skip to content

Commit b04bbb7

Browse files
authored
Merge pull request #52 from microsoftgraph/feature/version1-0-2
- bumps version to 1.0.2
2 parents fc8daf1 + 1f65d4d commit b04bbb7

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ mavenGroupId = com.microsoft.graph
2727
mavenArtifactId = microsoft-graph-core
2828
mavenMajorVersion = 1
2929
mavenMinorVersion = 0
30-
mavenPatchVersion = 1
30+
mavenPatchVersion = 2
3131
mavenArtifactSuffix =
3232
nightliesUrl = http://dl.bintray.com/MicrosoftGraph/Maven
3333

readme.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,19 @@ repository {
1919
2020
dependency {
2121
// Include the sdk as a dependency
22-
compile('com.microsoft.graph:microsoft-graph-core:1.0.1')
22+
compile('com.microsoft.graph:microsoft-graph-core:1.0.2')
2323
}
2424
```
2525

2626
### 1.2 Install via Maven
27+
2728
Add the dependency in `dependencies` in pom.xml
28-
```dependency
29+
30+
```xml
2931
<dependency>
3032
<groupId>com.microsoft.graph</groupId>
3133
<artifactId>microsoft-graph-core</artifactId>
32-
<version>1.0.1</version>
34+
<version>1.0.2</version>
3335
</dependency>
3436
```
3537

src/main/java/com/microsoft/graph/httpcore/TelemetryHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
public class TelemetryHandler implements Interceptor{
1212

1313
public static final String SDK_VERSION = "SdkVersion";
14-
public static final String VERSION = "v1.0.1";
14+
public static final String VERSION = "v1.0.2";
1515
public static final String GRAPH_VERSION_PREFIX = "graph-java-core";
1616
public static final String JAVA_VERSION_PREFIX = "java";
1717
public static final String CLIENT_REQUEST_ID = "client-request-id";

0 commit comments

Comments
 (0)