Skip to content

Commit

Permalink
Merge pull request #808 from microsoft/releaseV0.9.0
Browse files Browse the repository at this point in the history
ready for release
  • Loading branch information
ramsessanchez authored Nov 10, 2023
2 parents 52bdd41 + 9bfd2e1 commit 60f4b25
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
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.7.2'
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:0.7.2'
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:0.7.2'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:0.7.2'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:0.7.2'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:0.7.2'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:0.7.2'
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'
```

### 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.7.2</version>
<version>0.9.0</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-authentication-azure</artifactId>
<version>0.7.2</version>
<version>0.9.0</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-http-okHttp</artifactId>
<version>0.7.2</version>
<version>0.9.0</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-json</artifactId>
<version>0.7.2</version>
<version>0.9.0</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-text</artifactId>
<version>0.7.2</version>
<version>0.9.0</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-form</artifactId>
<version>0.7.2</version>
<version>0.9.0</version>
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-multipart</artifactId>
<version>0.7.2</version>
<version>0.9.0</version>
</dependency>
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public UserAgentHandlerOption() { }
@Nonnull
private String productName = "kiota-java";
@Nonnull
private String productVersion = "0.8.0";
private String productVersion = "0.9.0";
/**
* Gets the product name to be used in the user agent header
* @return the product name
Expand Down

0 comments on commit 60f4b25

Please sign in to comment.