Skip to content

Commit

Permalink
Merge pull request #1785 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.3.1
  • Loading branch information
baywet authored Oct 23, 2024
2 parents 6e70a6e + 4673395 commit ba90e5e
Show file tree
Hide file tree
Showing 6 changed files with 14 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.3.0"
".": "3.3.1"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ 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.3.1](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.3.0...v3.3.1) (2024-10-23)


### Bug Fixes

* release new version with updated kiota dependencies ([6e70a6e](https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/6e70a6e8e83457b20baac14a508400bb1b093432))
* release new version with updated kiota dependencies ([1cfa35a](https://github.com/microsoftgraph/msgraph-sdk-java-core/commit/1cfa35ab9cd46b5a5761cbad1ef96f0c0883f8e6))

## [3.3.0](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.2.1...v3.3.0) (2024-09-30)


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.3.0'
implementation 'com.microsoft.graph:microsoft-graph-core:3.3.1'
// 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.3.0</version>
<version>3.3.1</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 @@ -30,7 +30,7 @@ mavenMajorVersion = 3
mavenMinorVersion = 3
# x-release-please-end
# x-release-please-start-patch
mavenPatchVersion = 0
mavenPatchVersion = 1
# x-release-please-end
mavenArtifactSuffix =

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.3.0</version>
<version>3.3.1</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 @@ -19,7 +19,7 @@ private static class VersionValues {
private static final int MINOR = 3;
// x-release-please-end
// x-release-please-start-patch
private static final int PATCH = 0;
private static final int PATCH = 1;
// x-release-please-end
}

Expand Down

0 comments on commit ba90e5e

Please sign in to comment.