Skip to content

Commit

Permalink
🔖 Release version 2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
smidf committed Nov 9, 2023
1 parent 9b52d87 commit a911893
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Change Log
==========

## 2.3.1 (2023-11-09)

### Updated:
- Gradle to 8.4
- Kotlin to 1.9.10
- Moshi to 1.15.0

## 2.3.0 (2021-08-17)

### Updated:
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# OpenApi 3 Codegen / Swagger

[![Latest version](https://img.shields.io/github/v/release/eManPrague/swagger-codegen)](https://github.com/eManPrague/swagger-codegen/releases/tag/v2.3.0)
[![Latest version](https://img.shields.io/github/v/release/eManPrague/swagger-codegen)](https://github.com/eManPrague/swagger-codegen/releases/tag/v2.3.1)

The Swagger codegen contains a template-driven engine to generate documentation, code for Java, Kotlin and Android such like Retrofit and Room. It is a fork of the https://github.com/OpenAPITools/openapi-generator with modifications

Expand All @@ -27,7 +27,7 @@ buildscript {

dependencies {
...
classpath("cz.eman.swagger:swagger-codegen:2.3.0")
classpath("cz.eman.swagger:swagger-codegen:2.3.1")
}
}
```
Expand All @@ -42,7 +42,7 @@ buildscript {
dependencies {
...
classpath 'cz.eman.swagger:swagger-codegen:2.3.0'
classpath 'cz.eman.swagger:swagger-codegen:2.3.1'
}
}
```
Expand Down Expand Up @@ -128,6 +128,6 @@ Other options can be found [here](https://github.com/OpenAPITools/openapi-genera
If your OpenApi contains some specific objects for parsing JSON, .... You need add the Moshi dependencies

```kotlin
implementation("com.squareup.moshi:moshi-kotlin:1.12.0")
implementation("com.squareup.moshi:moshi-adapters:1.12.0")
implementation("com.squareup.moshi:moshi-kotlin:1.15.0")
implementation("com.squareup.moshi:moshi-adapters:1.15.0")
```
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
org.gradle.jvmargs=-Xmx1536m

version=2.3.0
version=2.3.1

0 comments on commit a911893

Please sign in to comment.