Skip to content

Commit

Permalink
Merge pull request #1611 from microsoft/release-please--branches--main
Browse files Browse the repository at this point in the history
chore(main): release 1.6.0
  • Loading branch information
Ndiritu authored Oct 8, 2024
2 parents d15e201 + 2a767f0 commit 731286c
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 18 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.1"
".": "1.6.0"
}
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).

## [1.6.0](https://github.com/microsoft/kiota-java/compare/v1.5.1...v1.6.0) (2024-10-08)


### Features

* Adds overload to serialization proxy factories to configure serialization of all values in backed models ([867953c](https://github.com/microsoft/kiota-java/commit/867953cbd0523cd8d146a5f3a522cd8652ccd924))
* Adds overloads to serialization helper methods with backing store serialization configuration options ([0006ff8](https://github.com/microsoft/kiota-java/commit/0006ff8538e2c26692c4e2f3238fadaec1436027))

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


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.1'
implementation 'com.microsoft.kiota:microsoft-kiota-abstractions:1.6.0'
// 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.1'
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.6.0'
// x-release-please-end
// x-release-please-start-version
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.5.1'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.6.0'
// x-release-please-end
// x-release-please-start-version
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.5.1'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.6.0'
// x-release-please-end
// x-release-please-start-version
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.5.1'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.6.0'
// x-release-please-end
// x-release-please-start-version
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.5.1'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.6.0'
// x-release-please-end
// x-release-please-start-version
implementation 'com.microsoft.kiota:microsoft-kiota-bundle:1.5.1'
implementation 'com.microsoft.kiota:microsoft-kiota-bundle:1.6.0'
// 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.1</version>
<version>1.6.0</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.1</version>
<version>1.6.0</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.1</version>
<version>1.6.0</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.1</version>
<version>1.6.0</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.1</version>
<version>1.6.0</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.1</version>
<version>1.6.0</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.1</version>
<version>1.6.0</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.1"; // x-release-please-version
@Nonnull private String productVersion = "1.6.0"; // x-release-please-version

/**
* Gets the product name to be used in the user agent header
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ mavenGroupId = com.microsoft.kiota
mavenMajorVersion = 1
# x-release-please-end
# x-release-please-start-minor
mavenMinorVersion = 5
mavenMinorVersion = 6
# x-release-please-end
# x-release-please-start-patch
mavenPatchVersion = 1
mavenPatchVersion = 0
# x-release-please-end
mavenArtifactSuffix =

Expand Down

0 comments on commit 731286c

Please sign in to comment.