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 26, 2023
1 parent 3453150 commit 3153de4
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 22 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
## Version Release
This Is Latest Release

$version_release = 1.1.5
$version_release = 1.1.6

What's New??

Expand Down Expand Up @@ -79,14 +79,14 @@ allprojects {

dependencies {
// library frogo-ui
implementation 'com.github.frogobox:frogo-ui:1.1.5'
implementation 'com.github.frogobox:frogo-ui:1.1.6'
}

#### <Option 2> Kotlin DSL Gradle

dependencies {
// library frogo-ui
implementation("com.github.frogobox:frogo-ui:1.1.5")
implementation("com.github.frogobox:frogo-ui:1.1.6")
}

## Documentation
Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Use this section to tell people about which versions of your project are
currently being supported with security updates.

| Version | Supported |
| ------- | ------------------ |
|---------|--------------------|
| 5.1.x | :white_check_mark: |
| 5.0.x | :x: |
| 4.0.x | :white_check_mark: |
Expand Down
12 changes: 3 additions & 9 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -62,19 +62,13 @@ android {
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

tasks.withType<KotlinCompile> {
kotlinOptions {
jvmTarget = "11"
}
}

packagingOptions {
resources {
excludes += setOf("META-INF/AL2.0", "META-INF/LGPL2.1")
jvmTarget = "17"
}
}

Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "8.0.0" apply false
id("com.android.library") version "8.0.0" apply false
id("com.android.application") version "8.0.1" apply false
id("com.android.library") version "8.0.1" apply false
id("org.jetbrains.kotlin.android") version DependencyGradle.KOTLIN_VERSION apply false
id("org.jetbrains.kotlin.jvm") version DependencyGradle.KOTLIN_VERSION apply false
}
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ repositories {

dependencies{
// library frogo-build-src
implementation("com.github.frogobox:open-build-src:2.1.6")
implementation("com.github.frogobox:open-build-src:2.1.8")
}
6 changes: 3 additions & 3 deletions buildSrc/src/main/kotlin/DependencyGradle.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
object DependencyGradle {

// dependencies version
const val KOTLIN_VERSION = Version.JetBrains.kotlin
const val KOTLIN_VERSION = "1.8.20"
const val COMPOSE_MULTIPLATFORM_VERSION = Version.Androidx.composeMultiPlatform
const val COMPOSE_VERSION = Version.Androidx.composeCompiler
const val COMPOSE_VERSION = "1.4.6"

const val FROGO_PATH_CORE_UI = ":frogocoreui"
const val FROGO_PATH_UI = ":frogoui"

const val FrogoRecyclerView = "com.github.amirisback:frogo-recycler-view:4.3.3"
const val FrogoRecyclerView = "com.github.amirisback:frogo-recycler-view:4.3.5"

}
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/ProjectSetting.kt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ object ProjectSetting {

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

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

Expand Down
4 changes: 2 additions & 2 deletions frogoui/src/main/res/drawable/frogo_ic_empty_view.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="512dp"
android:height="512dp"
android:width="@dimen/frogo_dimen_24dp"
android:height="@dimen/frogo_dimen_24dp"
android:viewportWidth="512.0003"
android:viewportHeight="512">
<path
Expand Down

0 comments on commit 3153de4

Please sign in to comment.