Skip to content

Commit

Permalink
Merge pull request #1849 from microsoftgraph/release-please--branches…
Browse files Browse the repository at this point in the history
…--main--components--com.microsoft.graph.microsoft-graph-core

chore(main): release 3.6.0
  • Loading branch information
baywet authored Feb 18, 2025
2 parents aa23bd7 + 5e89256 commit a7e39c4
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "3.5.0"
".": "3.6.0"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.6.0](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.5.0...v3.6.0) (2025-02-18)


### Features

* adds ChangeNotification interfaces and static methods ([aa23bd7](https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/aa23bd7d9a8568cf9abc2b0f9758618bac016547))

## [3.5.0](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.4.0...v3.5.0) (2025-01-02)


Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ repositories {
dependencies {
// Include the sdk as a dependency
// x-release-please-start-version
implementation 'com.microsoft.graph:microsoft-graph-core:3.5.0'
implementation 'com.microsoft.graph:microsoft-graph-core:3.6.0'
// x-release-please-end
// This dependency is only needed if you are using the TokenCredentialAuthProvider
implementation 'com.azure:azure-identity:1.11.0'
Expand All @@ -40,7 +40,7 @@ Add the dependency in `dependencies` in pom.xml
<groupId>com.microsoft.graph</groupId>
<artifactId>microsoft-graph-core</artifactId>
<!--x-release-please-start-version-->
<version>3.5.0</version>
<version>3.6.0</version>
<!--x-release-please-end-->
<!-- This dependency is only needed if you are using the TokenCredentialAuthProvider -->
<groupId>com.azure</groupId>
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ mavenArtifactId = microsoft-graph-core
mavenMajorVersion = 3
# x-release-please-end
# x-release-please-start-minor
mavenMinorVersion = 5
mavenMinorVersion = 6
# x-release-please-end
# x-release-please-start-patch
mavenPatchVersion = 0
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<groupId>com.microsoft.graph</groupId>
<artifactId>microsoft-graph-core</artifactId>
<!--x-release-please-start-version-->
<version>3.5.0</version>
<version>3.6.0</version>
<!--x-release-please-end-->
<packaging>pom</packaging>

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 @@ -16,7 +16,7 @@ private static class VersionValues {
private static final int MAJOR = 3;
// x-release-please-end
// x-release-please-start-minor
private static final int MINOR = 5;
private static final int MINOR = 6;
// x-release-please-end
// x-release-please-start-patch
private static final int PATCH = 0;
Expand Down

0 comments on commit a7e39c4

Please sign in to comment.