Skip to content

Commit

Permalink
- bumps patch for uri template swap
Browse files Browse the repository at this point in the history
  • Loading branch information
baywet committed Sep 1, 2023
1 parent c0ed9e6 commit b0dbf6a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 15 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

## [0.7.2] - 2023-09-01

### Changed

- Swapped custom implementation of RFC6570 URI templates to std uritemplates.

## [0.7.1] - 2023-08-21

### 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:0.5.0'
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:0.5.0'
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:0.5.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:0.5.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:0.5.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:0.5.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:0.5.0'
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'
```

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

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 = 0
mavenMinorVersion = 7
mavenPatchVersion = 1
mavenPatchVersion = 2
mavenArtifactSuffix =

#These values are used to run functional tests
Expand Down

0 comments on commit b0dbf6a

Please sign in to comment.