Skip to content

Commit 8078467

Browse files
authored
Merge pull request #431 from microsoftgraph/release/2.0.0
- bumps version number
2 parents 5be9bfb + 10b9ff3 commit 8078467

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,18 @@ repository {
1818
1919
dependency {
2020
// Include the sdk as a dependency
21-
compile('com.microsoft.graph:microsoft-graph:1.9.+')
21+
compile('com.microsoft.graph:microsoft-graph:2.0.+')
2222
}
2323
```
2424

2525
### 1.2 Install via Maven
2626
Add the dependency in `dependencies` in pom.xml
27-
```dependency
27+
28+
```xml
2829
<dependency>
2930
<groupId>com.microsoft.graph</groupId>
3031
<artifactId>microsoft-graph</artifactId>
31-
<version>1.9.0</version>
32+
<version>2.0.0</version>
3233
</dependency>
3334
```
3435

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ mavenRepoUrl = https://api.bintray.com/content/microsoftgraph/Maven/micr
2525
mavenBintraySnapshotUrl = http://oss.jfrog.org/artifactory/oss-snapshot-local
2626
mavenGroupId = com.microsoft.graph
2727
mavenArtifactId = microsoft-graph
28-
mavenMajorVersion = 1
29-
mavenMinorVersion = 9
28+
mavenMajorVersion = 2
29+
mavenMinorVersion = 0
3030
mavenPatchVersion = 0
3131
mavenArtifactSuffix =
3232
nightliesUrl = http://dl.bintray.com/MicrosoftGraph/Maven

src/main/java/com/microsoft/graph/core/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ private Constants() {
2828
public static final String APPID = "app-id";
2929
public static final String USERNAME = "[email protected]";
3030
public static final String PASSWORD = "password";
31-
public static final String VERSION_NAME = "1.9.0";
31+
public static final String VERSION_NAME = "2.0.0";
3232
}

0 commit comments

Comments
 (0)