Skip to content

Commit

Permalink
Prepare release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
britter committed Apr 16, 2020
1 parent cc2f962 commit 5c15ba3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The only setting that users might want to configure is `generateHelpMojo` which

```groovy
plugins {
id 'de.benediktritter.maven-plugin-development' version '0.1.0'
id 'de.benediktritter.maven-plugin-development' version '0.2.0'
}
mavenPlugin {
Expand All @@ -35,7 +35,7 @@ mavenPlugin {

```kotlin
plugins {
id("de.benediktritter.maven-plugin-development") version "0.1.0"
id("de.benediktritter.maven-plugin-development") version "0.2.0"
}

mavenPlugin {
Expand All @@ -53,7 +53,7 @@ All project dependencies added to this configuration will be searched for mojo i

```groovy
plugins {
id 'de.benediktritter.maven-plugin-development' version '0.1.0'
id 'de.benediktritter.maven-plugin-development' version '0.2.0'
}
dependencies {
Expand All @@ -65,7 +65,7 @@ dependencies {

```kotlin
plugins {
id("de.benediktritter.maven-plugin-development") version "0.1.0"
id("de.benediktritter.maven-plugin-development") version "0.2.0"
}

dependencies {
Expand All @@ -84,7 +84,7 @@ In the following examples only `org.apache.commons:commons-lang3:3.9` will be ad

```groovy
plugins {
id 'de.benediktritter.maven-plugin-development' version '0.1.0'
id 'de.benediktritter.maven-plugin-development' version '0.2.0'
}
configurations {
Expand All @@ -105,7 +105,7 @@ mavenPlugin {

```kotlin
plugins {
id("de.benediktritter.maven-plugin-development") version "0.1.0"
id("de.benediktritter.maven-plugin-development") version "0.2.0"
}

val deps by configurations.creating
Expand All @@ -128,7 +128,7 @@ If you can't or don't want to use auto detection of mojos there is also a DSL fo

```groovy
plugins {
id 'de.benediktritter.maven-plugin-development' version '0.1.0'
id 'de.benediktritter.maven-plugin-development' version '0.2.0'
}
mavenPlugin {
Expand All @@ -151,7 +151,7 @@ mavenPlugin {

```kotlin
plugins {
id("de.benediktritter.maven-plugin-development") version "0.1.0"
id("de.benediktritter.maven-plugin-development") version "0.2.0"
}

mavenPlugin {
Expand Down
10 changes: 5 additions & 5 deletions RELEASE_HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
# 0.2.0 - TBA

## Breaking changes

* Package `de.benediktritter.maven.plugin.development.model` has been removed.
# 0.2.0 - 2020-04-16

## New Features

Expand All @@ -20,6 +16,10 @@
* Force version upgrade of qdox
https://github.com/britter/maven-plugin-development/pull/9

## Breaking changes

* Package `de.benediktritter.maven.plugin.development.model` has been removed.

# 0.1.0 - 2020-04-05

Initial release
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ plugins {

group = "de.benediktritter"
description = "Gradle plugin for developing Apache Maven plugins"
version = "0.2.0-SNAPSHOT"
version = "0.2.0"

java {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down

0 comments on commit 5c15ba3

Please sign in to comment.