Skip to content

Commit

Permalink
Merge pull request #185 from cdsap/bump_1.3.2_after_relase
Browse files Browse the repository at this point in the history
Bump new version after release
  • Loading branch information
cdsap authored May 28, 2020
2 parents 52013d0 + 2025a32 commit c6a696f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ https://en.wikipedia.org/wiki/Talaiot
Using the plugins DSL
```
plugins {
id("com.cdsap.talaiot") version "1.3.0"
id("com.cdsap.talaiot") version "1.3.1"
}
```

Expand All @@ -54,7 +54,7 @@ buildscript {
}
}
dependencies {
classpath("com.cdsap:talaiot:1.3.0")
classpath("com.cdsap:talaiot:1.3.1")
}
}
Expand All @@ -65,7 +65,7 @@ apply(plugin = "com.cdsap.talaiot")
Using the plugins DSL:
```
plugins {
id "com.cdsap.talaiot" version "1.3.0"
id "com.cdsap.talaiot" version "1.3.1"
}
```
Expand All @@ -79,7 +79,7 @@ buildscript {
}
}
dependencies {
classpath "com.cdsap:talaiot:1.3.0"
classpath "com.cdsap:talaiot:1.3.1"
}
}
Expand All @@ -96,7 +96,7 @@ maven ( url = uri("http://oss.jfrog.org/artifactory/oss-snapshot-local") )
And the current Snapshot:

````
classpath("com.cdsap:talaiot:1.3.1-SNAPSHOT")
classpath("com.cdsap:talaiot:1.3.2-SNAPSHOT")
````

## Basic configuration <a name="basic-configuration"></a>
Expand Down
2 changes: 1 addition & 1 deletion sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ repositories {

plugins {
kotlin("jvm") version "1.3.60"
id("com.cdsap.talaiot") version "1.3.1-SNAPSHOT"
id("com.cdsap.talaiot") version "1.3.2-SNAPSHOT"
}

dependencies {
Expand Down
6 changes: 3 additions & 3 deletions talaiot/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ plugins {
`maven-publish`
id("jacoco")
kotlin("jvm") version "1.3.60"
id("com.gradle.plugin-publish") version "0.10.0"
id("com.gradle.plugin-publish") version "0.12.0"
}

jacoco {
toolVersion = "0.8.3"
}

val versionTalaiot = "1.3.1-SNAPSHOT"
val versionTalaiot = "1.3.2-SNAPSHOT"

group = "com.cdsap"
version = versionTalaiot
Expand Down Expand Up @@ -49,7 +49,7 @@ pluginBundle {
displayName = "Talaiot"
description = "Simple and extensible plugin to track task and build times in your Gradle Project."
tags = listOf("tracking", "kotlin", "gradle")
version = "1.2.0"
version = versionTalaiot
}
}
}
Expand Down

0 comments on commit c6a696f

Please sign in to comment.