Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix package version #1486

Merged
merged 1 commit into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.3.0] - 2024-08-08

### Changed

- Continuous Access Evaluation is now enabled by default for Azure Identity.

## [1.2.0] - 2024-07-25
## [1.2.0] - 2024-08-09

### Changed

- Adds bundle package for Kiota [#1420](https://github.com/microsoft/kiota-java/issues/1420).
- Continuous Access Evaluation is now enabled by default for Azure Identity.

## [1.1.14] - 2024-06-10

Expand Down
29 changes: 15 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,14 @@ 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.14'
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.1.14'
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.1.14'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.1.14'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.1.14'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.1.14'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.1.14'
implementation 'com.microsoft.kiota:microsoft-kiota-abstractions:1.2.0'
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.2.0'
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.2.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.2.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.2.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.2.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.2.0'
implementation 'com.microsoft.kiota:microsoft-kiota-bundle:1.2.0'
implementation 'jakarta.annotation:jakarta.annotation-api:2.1.1'
```

Expand All @@ -39,37 +40,37 @@ In `pom.xml` in the `dependencies` section:
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-abstractions</artifactId>
<version>1.1.14</version>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-authentication-azure</artifactId>
<version>1.1.14</version>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-http-okHttp</artifactId>
<version>1.1.14</version>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-json</artifactId>
<version>1.1.14</version>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-text</artifactId>
<version>1.1.14</version>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-form</artifactId>
<version>1.1.14</version>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-multipart</artifactId>
<version>1.1.14</version>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>jakarta.annotation</groupId>
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.3.0";
@Nonnull private String productVersion = "1.2.0";

/**
* 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 @@ -25,7 +25,7 @@ org.gradle.caching=true

mavenGroupId = com.microsoft.kiota
mavenMajorVersion = 1
mavenMinorVersion = 3
mavenMinorVersion = 2
mavenPatchVersion = 0
mavenArtifactSuffix =

Expand Down