Skip to content

Commit 2c35ce1

Browse files
Release: 2.0.0
## [2.0.0](v1.1.0...v2.0.0) (2024-05-23) ### Breaking Changes * added simple openapi classes ([2be186c](2be186c)) ### New * added cleanupUnusedComponents ([f5ca98e](f5ca98e)) ### Dependency Updates * Update dependency com.github.spullara.mustache.java:compiler to v0.9.13 ([7aca52d](7aca52d)) * Update dependency gradle to v8.7 ([4ef9469](4ef9469)) * Update gradle/wrapper-validation-action action to v3 ([51b0908](51b0908)) * Update junit5 monorepo to v5.10.2 ([069b6a0](069b6a0)) * Update plugin io.github.gradle-nexus.publish-plugin to v2 ([5d73680](5d73680)) * Update plugin org.jetbrains.kotlin.jvm to v1.9.24 ([3c3f823](3c3f823))
1 parent cd173eb commit 2c35ce1

File tree

3 files changed

+27
-5
lines changed

3 files changed

+27
-5
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## [2.0.0](https://github.com/lancomsystems/openapi-parser/compare/v1.1.0...v2.0.0) (2024-05-23)
2+
3+
4+
### Breaking Changes
5+
6+
* added simple openapi classes ([2be186c](https://github.com/lancomsystems/openapi-parser/commit/2be186cb2e47ec7df5be22531bed7e3c7946b159))
7+
8+
9+
### New
10+
11+
* added cleanupUnusedComponents ([f5ca98e](https://github.com/lancomsystems/openapi-parser/commit/f5ca98ec96391673f50fbde2154aedc2303399bf))
12+
13+
14+
### Dependency Updates
15+
16+
* Update dependency com.github.spullara.mustache.java:compiler to v0.9.13 ([7aca52d](https://github.com/lancomsystems/openapi-parser/commit/7aca52d598ecaad3c6d707edd6b9c74bc4f84c7e))
17+
* Update dependency gradle to v8.7 ([4ef9469](https://github.com/lancomsystems/openapi-parser/commit/4ef9469de7c22c933d254d721b971093fe6a696b))
18+
* Update gradle/wrapper-validation-action action to v3 ([51b0908](https://github.com/lancomsystems/openapi-parser/commit/51b0908ac6374f62622d0813db8fb7488320d9ab))
19+
* Update junit5 monorepo to v5.10.2 ([069b6a0](https://github.com/lancomsystems/openapi-parser/commit/069b6a0ba76e27b33316db39300b82e124e23d38))
20+
* Update plugin io.github.gradle-nexus.publish-plugin to v2 ([5d73680](https://github.com/lancomsystems/openapi-parser/commit/5d73680b7d500bae00f29ceb924534925e289c81))
21+
* Update plugin org.jetbrains.kotlin.jvm to v1.9.24 ([3c3f823](https://github.com/lancomsystems/openapi-parser/commit/3c3f823fd2121627554916439ca2a045b3bf6ce7))
22+
123
## [1.1.0](https://github.com/lancomsystems/openapi-parser/compare/v1.0.2...v1.1.0) (2024-01-22)
224

325

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# OpenAPI 3.0 Parser in Kotlin
22

3-
Latest Version: 1.1.0
3+
Latest Version: 2.0.0
44

55
## Project Description
66

@@ -41,20 +41,20 @@ To use the project, you can include it in your Gradle or Maven project as follow
4141

4242
`build.gradle`
4343
```gradle
44-
implementation 'io.github.lancomsystems.openapi.parser:openapi-parser:1.1.0'
44+
implementation 'io.github.lancomsystems.openapi.parser:openapi-parser:2.0.0'
4545
```
4646

4747
`build.gradle.kts`
4848
```gradle
49-
implementation("io.github.lancomsystems.openapi.parser:openapi-parser:1.1.0")'
49+
implementation("io.github.lancomsystems.openapi.parser:openapi-parser:2.0.0")'
5050
```
5151

5252
### Maven
5353
```maven
5454
<dependency>
5555
<groupId>io.github.lancomsystems.openapi.parser</groupId>
5656
<artifactId>openapi-parser</artifactId>
57-
<version>1.1.0</version>
57+
<version>2.0.0</version>
5858
</dependency>
5959
```
6060

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
libraryVersion=1.1.0
1+
libraryVersion=2.0.0

0 commit comments

Comments
 (0)