Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedRejeb committed Jul 25, 2023
1 parent 036c464 commit 3b8403e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ A rich text editor library for both Jetpack Compose and Compose Multiplatform, f
Compose Rich Editor is available on `mavenCentral()`.

```kotlin
implementation("com.mohamedrejeb.richeditor:richeditor-compose:1.0.0-alpha02")
implementation("com.mohamedrejeb.richeditor:richeditor-compose:1.0.0-beta01")
```

## Quick Start
Expand Down
5 changes: 3 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
group = "com.mohamedrejeb.richeditor"
version = "1.0.0-alpha02"
version = "1.0.0-beta01"

plugins {
alias(libs.plugins.androidLibrary).apply(false)
alias(libs.plugins.kotlinMultiplatform).apply(false)
alias(libs.plugins.composeMultiplatform).apply(false)
// alias(libs.plugins.dokka).apply(false)
}

allprojects {
Expand All @@ -16,7 +17,7 @@ allprojects {
}

group = "com.mohamedrejeb.richeditor"
version = "1.0.0-alpha02"
version = "1.0.0-beta01"

// apply(plugin = "org.jetbrains.dokka")
apply(plugin = "maven-publish")
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ A rich text editor library for both Jetpack Compose and Compose Multiplatform, f
Compose Rich Editor is available on `mavenCentral()`.

```kotlin
implementation("com.mohamedrejeb.richeditor:richeditor-compose:1.0.0-alpha02")
implementation("com.mohamedrejeb.richeditor:richeditor-compose:1.0.0-beta01")
```

## Quick Start
Expand Down
6 changes: 4 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
agp = "7.4.2"
kotlin = "1.8.20"
compose = "1.4.0"
dokka = "1.8.20"

ksoup = "0.1.4"
jetbrainsMarkdown = "0.3.1"
Expand All @@ -10,7 +11,7 @@ jetbrainsMarkdown = "0.3.1"
compose-compiler = "1.4.6"
activity-compose = "1.7.0"
voyager = "1.0.0-rc05"
richeditor = "1.0.0-alpha02"
richeditor = "1.0.0-beta01"
android-minSdk = "21"
android-compileSdk = "33"

Expand All @@ -26,4 +27,5 @@ richeditor-compose = { module = "com.mohamedrejeb.richeditor:richeditor-compose"
[plugins]
androidLibrary = { id = "com.android.library", version.ref = "agp" }
kotlinMultiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
composeMultiplatform = { id = "org.jetbrains.compose", version.ref = "compose" }
composeMultiplatform = { id = "org.jetbrains.compose", version.ref = "compose" }
dokka = { id = "org.jetbrains.dokka", version.ref = "dokka" }
2 changes: 1 addition & 1 deletion sample/common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ kotlin {
@OptIn(org.jetbrains.compose.ExperimentalComposeLibrary::class)
api(compose.components.resources)

// implementation("com.mohamedrejeb.richeditor:richeditor-compose:1.0.0-alpha02")
// implementation("com.mohamedrejeb.richeditor:richeditor-compose:1.0.0-beta01")
implementation(project(":richeditor-compose"))

// Voyager Navigator
Expand Down

0 comments on commit 3b8403e

Please sign in to comment.