Skip to content

Commit

Permalink
Update version to 1.0.8-alpha for antonio, 0.0.7-alpha for annotation.
Browse files Browse the repository at this point in the history
- [#7 Issue](#7) is fixed
  • Loading branch information
LakeLab committed Nov 13, 2023
1 parent 27e8c25 commit 0ae04cf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Android library for the adapter view (RecyclerView, ViewPager, ViewPager2)
## Without data binding
```groovy
dependencies {
def antonioVersion = '1.0.7-alpha'
def antonioVersion = '1.0.8-alpha'
implementation "io.github.naverz:antonio:$antonioVersion"
Expand All @@ -23,7 +23,7 @@ dependencies {
implementation "io.github.naverz:antonio-paging3:$antonioVersion"
// You can implement additional dependencies as bellow, if you want to use AntonioAnnotation.
def antonioAnnotationVersion = '0.0.6-alpha'
def antonioAnnotationVersion = '0.0.7-alpha'
implementation "io.github.naverz:antonio-annotation:$antonioAnnotationVersion"
//For java (You must select only one of kapt, ksp and annotationProcessor)
annotationProcessor "io.github.naverz:antonio-compiler:$antonioAnnotationVersion"
Expand All @@ -36,7 +36,7 @@ dependencies {
## With data binding
```groovy
dependencies {
def antonioVersion = '1.0.7-alpha'
def antonioVersion = '1.0.8-alpha'
implementation "io.github.naverz:antonio-databinding:$antonioVersion"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const val KSP_VERSION = "1.9.20-1.0.14"

object Antonio {
const val NAME = "Antonio"
const val VERSION_NAME = "1.0.7-alpha"
const val VERSION_NAME = "1.0.8-alpha"
const val CORE = "io.github.naverz:antonio-core:$VERSION_NAME"
const val PAGING2_CORE = "io.github.naverz:antonio-core-paging2:$VERSION_NAME"
const val PAGING3_CORE = "io.github.naverz:antonio-core-paging3:$VERSION_NAME"
Expand All @@ -38,7 +38,7 @@ object Antonio {
}

object AntonioAnnotation {
const val VERSION_NAME = "0.0.6-alpha"
const val VERSION_NAME = "0.0.7-alpha"
const val COMPILER = "io.github.naverz:antonio-compiler:${VERSION_NAME}"
const val ANNOTATION = "io.github.naverz:antonio-annotation:${VERSION_NAME}"
fun getVersionName(moduleName: String): String {
Expand Down

0 comments on commit 0ae04cf

Please sign in to comment.