Skip to content

Commit

Permalink
Release v1.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
amirisback committed May 30, 2022
1 parent 43cea41 commit e8b6d49
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ Repository for testing build from jitpack.io
## Version Release
This Is Latest Release

$version_release = 1.1.5
$version_release = 1.1.6

What's New??

* Available for buildSrc Kotlin DSL *
* Adding Func for custom version *
* implementation(Androidx.appCompat) can call like this implementation(Androidx.appCompat("1.4.1")) *
* Update Kotlin Version 1.6.21 *
* Revert Kotlin Version 1.6.21 to 1.6.10 *
* Latest Jetpack Compose Version *
* Add Start Io Implementation *

Expand Down Expand Up @@ -69,11 +69,11 @@ object Version {

// Compose Version
const val composeActivity = "1.6.0-alpha03" // https://androidx.tech/artifacts/activity/activity-compose/
const val compose = "1.2.0-beta02" // https://developer.android.com/jetpack/androidx/releases/compose
const val composeMaterial3 = "1.0.0-alpha12" // https://developer.android.com/jetpack/androidx/releases/compose
const val composeNavigation = "2.5.0-alpha04" // https://androidx.tech/artifacts/navigation/navigation-compose/
const val compose = "1.2.0-alpha07" // https://developer.android.com/jetpack/androidx/releases/compose
const val composeMaterial3 = "1.0.0-alpha08" // https://developer.android.com/jetpack/androidx/releases/compose
const val composeNavigation = "2.4.2" // https://androidx.tech/artifacts/navigation/navigation-compose/
const val composeHiltNavigation = "1.0.0" // https://developer.android.com/jetpack/androidx/releases/hilt?hl=id
const val composeMultiPlatform = "1.2.0-alpha01-dev686" // https://github.com/JetBrains/compose-jb
const val composeMultiPlatform = "1.1.1" // https://github.com/JetBrains/compose-jb

// TestImplementation
const val junit4 = "4.13.2" // https://junit.org/junit4/
Expand All @@ -96,7 +96,7 @@ object Version {

object JetBrains {
// https://developer.android.com/jetpack/androidx/releases/compose-kotlin - Compability For Compose Version
const val kotlin = "1.6.21" // https://kotlinlang.org/docs/releases.html#release-details
const val kotlin = "1.6.10" // https://kotlinlang.org/docs/releases.html#release-details
const val coroutines = "1.6.2" // https://github.com/Kotlin/kotlinx.coroutines
}

Expand All @@ -118,7 +118,7 @@ object Version {

const val ktor = "2.0.1" // https://ktor.io/

const val piracyChecker = "1.2.8" //
const val piracyChecker = "1.2.8" // https://github.com/javiersantos/PiracyChecker
}

}
Expand All @@ -141,7 +141,7 @@ repositories {
```kotlin
dependencies {
// library open-build-src
implementation("com.github.frogobox:open-build-src:1.1.5")
implementation("com.github.frogobox:open-build-src:1.1.6")
}
```

Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/ProjectSetting.kt
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ object ProjectSetting {

const val VERSION_MAJOR = 1
const val VERSION_MINOR = 1
const val VERSION_PATCH = 5
const val VERSION_PATCH = 6

// -----------------------------------------------------------------------------------------------------------------

const val KOTLIN_VERSION = "1.6.21"
const val KOTLIN_VERSION = "1.6.10"

// -----------------------------------------------------------------------------------------------------------------

Expand Down
12 changes: 6 additions & 6 deletions src/main/kotlin/Version.kt
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ object Version {

// Compose Version
const val composeActivity = "1.6.0-alpha03" // https://androidx.tech/artifacts/activity/activity-compose/
const val compose = "1.2.0-beta02" // https://developer.android.com/jetpack/androidx/releases/compose
const val composeMaterial3 = "1.0.0-alpha12" // https://developer.android.com/jetpack/androidx/releases/compose
const val composeNavigation = "2.5.0-alpha04" // https://androidx.tech/artifacts/navigation/navigation-compose/
const val compose = "1.2.0-alpha07" // https://developer.android.com/jetpack/androidx/releases/compose
const val composeMaterial3 = "1.0.0-alpha08" // https://developer.android.com/jetpack/androidx/releases/compose
const val composeNavigation = "2.4.2" // https://androidx.tech/artifacts/navigation/navigation-compose/
const val composeHiltNavigation = "1.0.0" // https://developer.android.com/jetpack/androidx/releases/hilt?hl=id
const val composeMultiPlatform = "1.2.0-alpha01-dev686" // https://github.com/JetBrains/compose-jb
const val composeMultiPlatform = "1.1.1" // https://github.com/JetBrains/compose-jb

// TestImplementation
const val junit4 = "4.13.2" // https://junit.org/junit4/
Expand All @@ -76,7 +76,7 @@ object Version {

object JetBrains {
// https://developer.android.com/jetpack/androidx/releases/compose-kotlin - Compability For Compose Version
const val kotlin = "1.6.21" // https://kotlinlang.org/docs/releases.html#release-details
const val kotlin = "1.6.10" // https://kotlinlang.org/docs/releases.html#release-details
const val coroutines = "1.6.2" // https://github.com/Kotlin/kotlinx.coroutines
}

Expand All @@ -98,7 +98,7 @@ object Version {

const val ktor = "2.0.1" // https://ktor.io/

const val piracyChecker = "1.2.8" //
const val piracyChecker = "1.2.8" // https://github.com/javiersantos/PiracyChecker
}

}

0 comments on commit e8b6d49

Please sign in to comment.