Skip to content

Commit

Permalink
Merge pull request #1607 from microsoft/release-please--branches--main
Browse files Browse the repository at this point in the history
chore(main): release 1.5.1
  • Loading branch information
baywet authored Oct 3, 2024
2 parents 954b8e5 + ae66d64 commit 6ee4577
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 17 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 @@
{
".": "1.5.0"
".": "1.5.1"
}
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ 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).

## [1.5.1](https://github.com/microsoft/kiota-java/compare/v1.5.0...v1.5.1) (2024-10-03)


### Bug Fixes

* attempt to trigger release ([954b8e5](https://github.com/microsoft/kiota-java/commit/954b8e5b1a86058c93d226b2d19755b87943140c))
* attempt to trigger release ([8914f9c](https://github.com/microsoft/kiota-java/commit/8914f9c81764fd7e52cc20af4a630c66248ca5f6))
* upgrades to std uri template and additional date formats management ([df6208a](https://github.com/microsoft/kiota-java/commit/df6208a518744e2b41353219f295dc6941e51147))

## [1.5.0] - 2024-09-30

### Added
Expand Down
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,27 +22,27 @@ In `build.gradle` in the `dependencies` section:

```Groovy
// x-release-please-start-version
implementation 'com.microsoft.kiota:microsoft-kiota-abstractions:1.5.0'
implementation 'com.microsoft.kiota:microsoft-kiota-abstractions:1.5.1'
// x-release-please-end
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.5.0'
// x-release-please-end
// x-release-please-start-version
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.5.0'
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.5.1'
// x-release-please-end
// x-release-please-start-version
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.5.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.5.1'
// x-release-please-end
// x-release-please-start-version
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.5.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.5.1'
// x-release-please-end
// x-release-please-start-version
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.5.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.5.1'
// x-release-please-end
// x-release-please-start-version
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.5.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.5.1'
// x-release-please-end
// x-release-please-start-version
implementation 'com.microsoft.kiota:microsoft-kiota-bundle:1.5.0'
implementation 'com.microsoft.kiota:microsoft-kiota-bundle:1.5.1'
// x-release-please-end
implementation 'jakarta.annotation:jakarta.annotation-api:2.1.1'
```
Expand All @@ -56,49 +56,49 @@ In `pom.xml` in the `dependencies` section:
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-abstractions</artifactId>
<!--x-release-please-start-version-->
<version>1.5.0</version>
<version>1.5.1</version>
<!--x-release-please-end-->
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-authentication-azure</artifactId>
<!--x-release-please-start-version-->
<version>1.5.0</version>
<version>1.5.1</version>
<!--x-release-please-end-->
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-http-okHttp</artifactId>
<!--x-release-please-start-version-->
<version>1.5.0</version>
<version>1.5.1</version>
<!--x-release-please-end-->
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-json</artifactId>
<!--x-release-please-start-version-->
<version>1.5.0</version>
<version>1.5.1</version>
<!--x-release-please-end-->
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-text</artifactId>
<!--x-release-please-start-version-->
<version>1.5.0</version>
<version>1.5.1</version>
<!--x-release-please-end-->
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-form</artifactId>
<!--x-release-please-start-version-->
<version>1.5.0</version>
<version>1.5.1</version>
<!--x-release-please-end-->
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-multipart</artifactId>
<!--x-release-please-start-version-->
<version>1.5.0</version>
<version>1.5.1</version>
<!--x-release-please-end-->
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public UserAgentHandlerOption() {}

private boolean enabled = true;
@Nonnull private String productName = "kiota-java";
@Nonnull private String productVersion = "1.5.0"; // x-release-please-version
@Nonnull private String productVersion = "1.5.1"; // x-release-please-version

/**
* Gets the product name to be used in the user agent header
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ mavenMajorVersion = 1
mavenMinorVersion = 5
# x-release-please-end
# x-release-please-start-patch
mavenPatchVersion = 0
mavenPatchVersion = 1
# x-release-please-end
mavenArtifactSuffix =

Expand Down

0 comments on commit 6ee4577

Please sign in to comment.