Skip to content

Commit

Permalink
Merge pull request #1071 from microsoft/rsh/Kiota-Java-GA
Browse files Browse the repository at this point in the history
Update versions for 1.0.0
  • Loading branch information
baywet authored Feb 7, 2024
2 parents 67e2b20 + f8526ec commit 503ff61
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 18 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

## [1.0.0] - 2024-02-07

### Changed

- Release 1.0.0 of the Kiota Java Libraries as part of Java-SDK GA release.
- Map `XXX` error status code range to Parsable Exception object if more specific error status code range is not found.

## [0.12.2] - 2024-02-01
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:0.9.0'
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:0.9.0'
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:0.9.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:0.9.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:0.9.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:0.9.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:0.9.0'
implementation 'com.microsoft.kiota:microsoft-kiota-abstractions:1.0.0'
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.0.0'
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.0.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.0.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.0.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.0.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.0.0'
```

### 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>0.9.0</version>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-authentication-azure</artifactId>
<version>0.9.0</version>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-http-okHttp</artifactId>
<version>0.9.0</version>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-json</artifactId>
<version>0.9.0</version>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-text</artifactId>
<version>0.9.0</version>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-form</artifactId>
<version>0.9.0</version>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-multipart</artifactId>
<version>0.9.0</version>
<version>1.0.0</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 = "0.9.2";
@Nonnull private String productVersion = "1.0.0";

/**
* Gets the product name to be used in the user agent header
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ org.gradle.parallel=true
org.gradle.caching=true

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

#These values are used to run functional tests
Expand Down

0 comments on commit 503ff61

Please sign in to comment.