Skip to content

Commit

Permalink
Bump version and update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
Ndiritu committed May 7, 2024
1 parent 8a5aa2c commit 2d04094
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 16 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.11] - 2024-05-07

### Changed

- Downgraded jakarta annotation api dependency from 3.0.0 to 2.1.1 for Java 8 backward compatibility

## [1.1.10] - 2024-05-06

### Changed
Expand Down
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ Read more about Kiota [here](https://github.com/microsoft/kiota/blob/main/README
In `build.gradle` in the `dependencies` section:

```Groovy
implementation 'com.microsoft.kiota:microsoft-kiota-abstractions:1.1.9'
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.1.9'
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.1.9'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.1.9'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.1.9'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.1.9'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.1.9'
implementation 'com.microsoft.kiota:microsoft-kiota-abstractions:1.1.11'
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.1.11'
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.1.11'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.1.11'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.1.11'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.1.11'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.1.11'
```

### With Maven:
Expand All @@ -38,37 +38,37 @@ In `pom.xml` in the `dependencies` section:
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-abstractions</artifactId>
<version>1.1.9</version>
<version>1.1.11</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-authentication-azure</artifactId>
<version>1.1.9</version>
<version>1.1.11</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-http-okHttp</artifactId>
<version>1.1.9</version>
<version>1.1.11</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-json</artifactId>
<version>1.1.9</version>
<version>1.1.11</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-text</artifactId>
<version>1.1.9</version>
<version>1.1.11</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-form</artifactId>
<version>1.1.9</version>
<version>1.1.11</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-multipart</artifactId>
<version>1.1.9</version>
<version>1.1.11</version>
</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.1.9";
@Nonnull private String productVersion = "1.1.11";

/**
* 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 @@ -26,7 +26,7 @@ org.gradle.caching=true
mavenGroupId = com.microsoft.kiota
mavenMajorVersion = 1
mavenMinorVersion = 1
mavenPatchVersion = 10
mavenPatchVersion = 11
mavenArtifactSuffix =

#These values are used to run functional tests
Expand Down

0 comments on commit 2d04094

Please sign in to comment.