Skip to content

Commit

Permalink
Release version 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
acanda committed May 11, 2024
1 parent 9420bd6 commit 64acc4d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ To use it with the Kotlin DSL (build.gradle.kts):

```kotlin
plugins {
id("ch.acanda.gradle.fabrikt") version "0.7.0"
id("ch.acanda.gradle.fabrikt") version "0.8.0"
}

fabrikt {
Expand All @@ -33,7 +33,7 @@ To use it with the Groovy DSL (build.gradle):

```groovy
plugins {
id 'ch.acanda.gradle.fabrikt' version '0.7.0'
id 'ch.acanda.gradle.fabrikt' version '0.8.0'
}
fabrikt {
Expand Down Expand Up @@ -63,7 +63,7 @@ The plugin provides the following tasks:

```kotlin
plugins {
id("ch.acanda.gradle.fabrikt") version "0.7.0"
id("ch.acanda.gradle.fabrikt") version "0.8.0"
// If you are using IntelliJ IDEA, the plugin will automatically add the
// output directory as a generated sources directory.
idea
Expand Down Expand Up @@ -145,7 +145,7 @@ fabrikt {
| model.ignoreUnknownProperties | Enables adding `@JacksonIgnoreProperties(ignoreUnknown = true)` to the generated models.<br/>Values: `enabled`, `disabled`, `true`, `false`. | `disabled` |
| skip | Skips generating code if set to `true` when running the task `fabriktGenerate`. Tasks generating code for a single configuration, i.e. `fabriktGenerate[Name]`, ignore this setting.<br/>Values: `true`, `false`. | `false` |

### Defaults (coming in 0.8)
### Defaults

If you have many OpenAPI specifications with nearly the same configuration, you
can set the common values in the `defaults`. All properties except `apiFile` and
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
}

group = "ch.acanda.gradle"
version = "0.8.0-SNAPSHOT"
version = "0.8.0"

val generatedSources: Provider<Directory> = project.layout.buildDirectory.dir("generated/src/main/kotlin")

Expand Down

0 comments on commit 64acc4d

Please sign in to comment.