Skip to content

Commit

Permalink
Merge pull request #1525 from microsoftgraph/dev
Browse files Browse the repository at this point in the history
dev => master
  • Loading branch information
baywet authored Feb 28, 2024
2 parents efc11dc + 4950519 commit 61a67c2
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/git-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Download Build Artifact
uses: dawidd6/[email protected].1
uses: dawidd6/[email protected].2
with:
workflow: build-and-publish.yml
workflow_conclusion: success
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

## [3.1.5] - 2024-02-27

### Changed
- Bumps Kiota-Java abstractions, authentication, http, and serialization components

## [3.1.4] - 2024-02-21

- Bumps Kiota-Java abstractions, authentication, http, and serialization components
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ mavenGroupId = com.microsoft.graph
mavenArtifactId = microsoft-graph-core
mavenMajorVersion = 3
mavenMinorVersion = 1
mavenPatchVersion = 4
mavenPatchVersion = 5
mavenArtifactSuffix =

#These values are used to run functional tests
Expand Down
14 changes: 7 additions & 7 deletions gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ dependencies {
api 'com.squareup.okhttp3:okhttp:4.12.0'
api 'com.azure:azure-core:1.46.0'

api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.0.3'
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.0.3'
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.0.3'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.0.3'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.0.3'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.0.3'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.0.3'
api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.0.4'
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.0.4'
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.0.4'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.0.4'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.0.4'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.0.4'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.0.4'
}
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ repositories {
dependencies {
// Include the sdk as a dependency
implementation 'com.microsoft.graph:microsoft-graph-core:3.1.4'
implementation 'com.microsoft.graph:microsoft-graph-core:3.1.5'
// This dependency is only needed if you are using the TokenCredentialAuthProvider
implementation 'com.azure:azure-identity:1.11.0'
}
Expand All @@ -37,7 +37,7 @@ Add the dependency in `dependencies` in pom.xml
<!-- Include the sdk as a dependency -->
<groupId>com.microsoft.graph</groupId>
<artifactId>microsoft-graph-core</artifactId>
<version>3.1.4</version>
<version>3.1.5</version>
<!-- This dependency is only needed if you are using the TokenCredentialAuthProvider -->
<groupId>com.azure</groupId>
<artifactId>azure-identity</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/microsoft/graph/core/CoreConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ private CoreConstants() {}
private static class VersionValues {
private static final int MAJOR = 3;
private static final int MINOR = 1;
private static final int PATCH = 3;
private static final int PATCH = 5;
}

/**
Expand Down

0 comments on commit 61a67c2

Please sign in to comment.