Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
s1rius committed Jun 9, 2021
1 parent 6e73fcf commit a6b9057
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 8 deletions.
1 change: 1 addition & 0 deletions buildSrc/src/main/java/wtf/s1/buildsrc/Configs.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package wtf.s1.buildsrc

object Versions{
const val pudge = "0.1.1"
const val pudgeDev = "0.1.2"
const val asm = "8.0.1"
const val kotlin = "1.5.0"
const val ktx = "1.0.0"
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ android.useAndroidX=true
kotlin.code.style=official

GROUP=wtf.s1.pudge
POM_URL=https://github.com/s1rius/willfix
POM_SCM_URL=https://github.com/s1rius/willfix
POM_SCM_CONNECTION=scm:git:git://github.com/s1rius/willfix
POM_SCM_DEV_CONNECTION=scm:git:git://github.com/s1rius/willfix
POM_URL=https://github.com/s1rius/pudge
POM_SCM_URL=https://github.com/s1rius/pudge
POM_SCM_CONNECTION=scm:git:git://github.com/s1rius/pudge
POM_SCM_DEV_CONNECTION=scm:git:git://github.com/s1rius/pudge
4 changes: 3 additions & 1 deletion gradle/android-lib-build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import wtf.s1.buildsrc.Versions

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

Expand Down Expand Up @@ -31,7 +33,7 @@ android {
}


version = VERSION_NAME
version = Versions.pudgeDev
group = GROUP

apply from: rootProject.file('release.gradle')
4 changes: 3 additions & 1 deletion gradle/lib-build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import wtf.s1.buildsrc.Versions

apply plugin: 'kotlin'

java {
Expand All @@ -8,7 +10,7 @@ compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}

version = VERSION_NAME
version = Versions.pudgeDev
group = GROUP

apply from: rootProject.file('release.gradle')
5 changes: 4 additions & 1 deletion gradle/plugin-build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import wtf.s1.buildsrc.Deps
import wtf.s1.buildsrc.Versions

apply plugin: 'java-gradle-plugin'
apply plugin: 'kotlin'

Expand All @@ -9,7 +12,7 @@ compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}

version = VERSION_NAME
version = Versions.pudgeDev
group = GROUP

apply from: rootProject.file('release.gradle')
3 changes: 2 additions & 1 deletion willfix-standalone/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import wtf.s1.buildsrc.ClassPaths
import wtf.s1.buildsrc.Deps
import wtf.s1.buildsrc.Versions

apply plugin: 'java-gradle-plugin'
apply plugin: 'kotlin'
Expand Down Expand Up @@ -40,7 +41,7 @@ compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}

version = VERSION_NAME
version = Versions.pudgeDev
group = GROUP

apply from: rootProject.file('release.gradle')

0 comments on commit a6b9057

Please sign in to comment.