Skip to content

Commit

Permalink
Release 1.5.1 (#305)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdsap committed Jul 10, 2021
1 parent b011f88 commit 41eaa07
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ https://en.wikipedia.org/wiki/Talaiot
Using the plugins DSL:
```
plugins {
id("io.github.cdsap.talaiot") version "1.5.0"
id("io.github.cdsap.talaiot") version "1.5.1"
}
```

Expand All @@ -64,7 +64,7 @@ buildscript {
}
}
dependencies {
classpath("io.github.cdsap:talaiot:1.5.0")
classpath("io.github.cdsap:talaiot:1.5.1")
}
}
Expand All @@ -75,7 +75,7 @@ apply(plugin = "io.github.cdsap.talaiot")
Using the plugins DSL:
```
plugins {
id "io.github.cdsap.talaiot" version "1.5.0"
id "io.github.cdsap.talaiot" version "1.5.1"
}
```
Expand All @@ -89,7 +89,7 @@ buildscript {
}
}
dependencies {
classpath "io.github.cdsap:talaiot:1.5.0"
classpath "io.github.cdsap:talaiot:1.5.1"
}
}
Expand All @@ -114,7 +114,7 @@ Each plugin is deployed to the Gradle Plugin Portal using thee following convent
Using the plugins DSL:
```
plugins {
id("io.github.cdsap.talaiot.plugin.base") version "1.5.0"
id("io.github.cdsap.talaiot.plugin.base") version "1.5.1"
}
```

Expand All @@ -127,7 +127,7 @@ buildscript {
}
}
dependencies {
classpath("io.github.cdsap.talaiot.plugin:base:1.5.0")
classpath("io.github.cdsap.talaiot.plugin:base:1.5.1")
}
}
Expand All @@ -138,7 +138,7 @@ apply(plugin = "io.github.cdsap.talaiot.plugin.base")
Using the plugins DSL:
```
plugins {
id "io.github.cdsap.talaiot.plugin.base" version "1.5.0"
id "io.github.cdsap.talaiot.plugin.base" version "1.5.1"
}
```
Expand All @@ -152,7 +152,7 @@ buildscript {
}
}
dependencies {
classpath ""io.github.cdsap.talaiot.plugin:base:1.5.0""
classpath "io.github.cdsap.talaiot.plugin:base:1.5.1"
}
}
Expand All @@ -169,12 +169,12 @@ maven ( url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"
### Standard Plugin

````
classpath("io.github.cdsap:talaiot:1.5.1-SNAPSHOT")
classpath("io.github.cdsap:talaiot:1.5.2-SNAPSHOT")
````
### Individual Plugin

````
classpath("io.github.cdsap.talaiot.plugin:base:1.5.1-SNAPSHOT")
classpath("io.github.cdsap.talaiot.plugin:base:1.5.2-SNAPSHOT")
````

## Talaiot Extension <a name="talaiot-extension"></a>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package io.github.cdsap.talaiot.buildplugins

object Constants {
const val TALAIOT_VERSION = "1.5.1-SNAPSHOT"
const val TALAIOT_VERSION = "1.5.2-SNAPSHOT"
const val DEFAULT_GROUP_PLUGIN = "io.github.cdsap.talaiot.plugin"
const val DEFAULT_GROUP_LIBRARY = "io.github.cdsap.talaiot"
}

0 comments on commit 41eaa07

Please sign in to comment.