Skip to content

Commit d3c8774

Browse files
authored
Merge pull request #960 from microsoftgraph/bugfix/revert-version-bump
bugfix/revert version bump
2 parents 247d531 + e36537a commit d3c8774

File tree

7 files changed

+16
-44
lines changed

7 files changed

+16
-44
lines changed

.github/workflows/git-release.yml

Lines changed: 0 additions & 32 deletions
This file was deleted.

.github/workflows/preview-and-release.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ env:
1717
PREVIEW_TASK: publishSnapshotPublicationToSonatypeSnapshotRepository
1818
PUBLISH_TASK: publishMavenCentralReleasePublicationToSonatypeRepository
1919

20+
permissions:
21+
contents: write
22+
2023
jobs:
2124
maven_Preview:
2225
if: ${{ github.ref == 'refs/heads/dev' }}
@@ -96,3 +99,10 @@ jobs:
9699
gradle.properties
97100
**/gradle/**
98101
Scripts/**
102+
- name: GitHub Release
103+
uses: softprops/action-gh-release@v2
104+
with:
105+
token: ${{ secrets.GITHUB_TOKEN }}
106+
fail_on_unmatched_files: true
107+
files: |
108+
build/**/*.jar

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "6.11.0"
2+
".": "6.10.0"
33
}

CHANGELOG.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88

9-
## [6.11.0](https://github.com/microsoftgraph/msgraph-beta-sdk-java/compare/v6.10.0...v6.11.0) (2024-05-23)
10-
11-
12-
### Features
13-
14-
* **generation:** update request builders and models ([3690c94](https://github.com/microsoftgraph/msgraph-beta-sdk-java/commit/3690c94e6f84d846d3a10299369c4de4bc9f8ac8))
15-
169
## [6.10.0] - 2024-05-16
1710

1811
### Changed
@@ -813,3 +806,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
813806
- Generated beta models and request builders using Typewriter (#163)
814807
- Juniper-api from 5.7.2 to 5.8.0
815808
- Juniper-engine from 5.7.2 to 5.8.0
809+

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ repositories {
2222
dependencies {
2323
// Include the sdk as a dependency
2424
// x-release-please-start-version
25-
implementation 'com.microsoft.graph:microsoft-graph-beta:6.11.0'
25+
implementation 'com.microsoft.graph:microsoft-graph-beta:6.10.0'
2626
// x-release-please-end
2727
// This dependency is only needed if you are using the TokenCrendentialAuthProvider
2828
implementation 'com.azure:azure-identity:1.11.0'
@@ -39,7 +39,7 @@ Add the dependency in `dependencies` in pom.xml
3939
<groupId>com.microsoft.graph</groupId>
4040
<artifactId>microsoft-graph-beta</artifactId>
4141
<!--x-release-please-start-version-->
42-
<version>6.11.0</version>
42+
<version>6.10.0</version>
4343
<!--x-release-please-end-->
4444
</dependency>
4545
<dependency>

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ mavenArtifactId = microsoft-graph-beta
2929
mavenMajorVersion = 6
3030
# x-release-please-end
3131
# x-release-please-start-minor
32-
mavenMinorVersion = 11
32+
mavenMinorVersion = 10
3333
# x-release-please-end
3434
# x-release-please-start-patch
3535
mavenPatchVersion = 0

src/main/java/com/microsoft/graph/beta/info/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ private Constants() {
66
}
77
/** The SDK version */
88
// x-release-please-start-version
9-
public static final String VERSION_NAME = "6.11.0";
9+
public static final String VERSION_NAME = "6.10.0";
1010
// x-release-please-end
1111
}
1212

0 commit comments

Comments
 (0)