Skip to content

Commit 44deed3

Browse files
committed
create a new version
1 parent f0b5f97 commit 44deed3

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ Note, this readme offers a quick overview of the framework. For more in-depth in
2727
```kotlin
2828
dependencies {
2929
// the core library
30-
implementation("com.1gravity:bloc-core:0.9.3")
30+
implementation("com.1gravity:bloc-core:0.10.0")
3131

3232
// add to use the framework together with Redux
33-
implementation("com.1gravity:bloc-redux:0.9.3")
33+
implementation("com.1gravity:bloc-redux:0.10.0")
3434

3535
// useful extensions for Android and Jetpack/JetBrains Compose
36-
implementation("com.1gravity:bloc-compose:0.9.3")
36+
implementation("com.1gravity:bloc-compose:0.10.0")
3737
}
3838
```
3939

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ kotlin.internal.mpp.hierarchicalStructureByDefault=true
2525

2626
# Maven
2727
POM_GROUP=com.1gravity
28-
POM_VERSION_NAME=0.9.3
28+
POM_VERSION_NAME=0.10.0
2929
# set PUBLISH_AS_SNAPSHOT to false to publish a release version
3030
PUBLISH_AS_SNAPSHOT=true
3131

website/docs/extensions/android/compose.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ hide_title: true
1010
To use the [Jetpack Compose](https://developer.android.com/jetpack/compose) extensions please add the `bloc-compose` artifact as a dependency in the Gradle build file:
1111

1212
```kotlin
13-
implementation("com.1gravity:bloc-compose:0.9.3")
13+
implementation("com.1gravity:bloc-compose:0.10.0")
1414
```
1515

1616
## observeState

website/docs/extensions/redux/setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ hide_title: true
1010
To use the [Redux](https://developer.android.com/jetpack/compose) extensions please add the `bloc-redux` artifact as a dependency in the Gradle build file:
1111

1212
```kotlin
13-
implementation("com.1gravity:bloc-redux:0.9.3")
13+
implementation("com.1gravity:bloc-redux:0.10.0")
1414
```
1515

1616
## Libraries

website/docs/getting_started/setup.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ hide_title: true
1212
```kotlin
1313
dependencies {
1414
// the core library
15-
implementation("com.1gravity:bloc-core:0.9.3")
15+
implementation("com.1gravity:bloc-core:0.10.0")
1616

1717
// add to use the framework together with Redux
18-
implementation("com.1gravity:bloc-redux:0.9.3")
18+
implementation("com.1gravity:bloc-redux:0.10.0")
1919

2020
// useful extensions for Android and Jetpack/JetBrains Compose
21-
implementation("com.1gravity:bloc-compose:0.9.3")
21+
implementation("com.1gravity:bloc-compose:0.10.0")
2222
}
2323
```

0 commit comments

Comments
 (0)