Skip to content

Commit e1f2b7b

Browse files
committed
- reverts minor bump and patch bumps
1 parent c188abe commit e1f2b7b

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ repositories {
1919
2020
dependencies {
2121
// Include the sdk as a dependency
22-
implementation 'com.microsoft.graph:microsoft-graph:2.8.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:2.7.1'
2323
}
2424
```
2525

@@ -31,7 +31,7 @@ Add the dependency in `dependencies` in pom.xml
3131
<dependency>
3232
<groupId>com.microsoft.graph</groupId>
3333
<artifactId>microsoft-graph</artifactId>
34-
<version>2.8.0</version>
34+
<version>2.7.1</version>
3535
</dependency>
3636
```
3737

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ org.gradle.caching=true
2626
mavenGroupId = com.microsoft.graph
2727
mavenArtifactId = microsoft-graph
2828
mavenMajorVersion = 2
29-
mavenMinorVersion = 8
30-
mavenPatchVersion = 0
29+
mavenMinorVersion = 7
30+
mavenPatchVersion = 1
3131
mavenArtifactSuffix =
3232

3333
#These values are used to run functional tests

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
public final class Constants {
44
private Constants() {
55
}
6-
6+
77
public static final String APPROOT = "approot";
88
/**
99
* The content type header
@@ -18,19 +18,19 @@ private Constants() {
1818
*/
1919
public static final String JSON_CONTENT_TYPE = "application/json";
2020
/**
21-
* The binary content type header's value
21+
* The binary content type header's value
2222
*/
2323
public static final String BINARY_CONTENT_TYPE = "application/octet-stream";
24-
24+
2525
// Constants for functional tests
26-
// TO-DO: document how to register an application for functional
26+
// TO-DO: document how to register an application for functional
2727
// testing purposes
2828
public static final String APPID = "app-id";
2929
public static final String USERNAME = "[email protected]";
3030
public static final String PASSWORD = "password";
3131
public static final String TENANTID = "tenantid";
3232
public static final String CLIENTSECRET = "clientsecret";
33-
public static final String VERSION_NAME = "2.8.0";
33+
public static final String VERSION_NAME = "2.7.1";
3434
}
3535

3636

0 commit comments

Comments
 (0)