Skip to content

Commit fb8b248

Browse files
author
David Sucharda
committed
🔖 Release version 0.10.1
1 parent f4c16de commit fb8b248

File tree

3 files changed

+19
-11
lines changed

3 files changed

+19
-11
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
Change Log
22
==========
33

4+
## 0.10.1 (2022-03-28)
5+
6+
### Added
7+
- Added Result.chainError extension.
8+
9+
### Changed
10+
- Fixed Result.onError type.
11+
412
## 0.10.0 (2022-03-02)
513

614
### Added
715
- KLiveData - Kotlin reimplementation of the `androidx.lifecycle.LiveData`
816
- Basic binding screens
9-
- View and Fragment extensions to manipulate with the software keyboard
17+
- View and Fragment extensions to manipulate with the software keyboard
1018
- BindingRecyclerViewAdapter with paging support
1119
- Callbacks for BindingRecyclerViewAdapter creation and set-items events
1220

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Kotlin Android Architecture Library - Kaal - by eMan
22

3-
[![Latest version](https://img.shields.io/github/v/release/eManPrague/kaal)](https://github.com/eManPrague/kaal/releases/tag/v0.10.0)
3+
[![Latest version](https://img.shields.io/github/v/release/eManPrague/kaal)](https://github.com/eManPrague/kaal/releases/tag/v0.10.1)
44

55
[![Slack channel](https://img.shields.io/badge/Chat-Slack-blue.svg)](https://kotlinlang.slack.com/messages/kaal/)
66

@@ -38,11 +38,11 @@ but you can use it also in data and infrastructure, because you need e.g. instan
3838

3939
```kotlin
4040
// Gradle Kotlin DSL
41-
implementation("cz.eman.kaal:kaal-core:0.10.0")
41+
implementation("cz.eman.kaal:kaal-core:0.10.1")
4242
```
4343

4444
```groovy
45-
implementation 'cz.eman.kaal:kaal-core:0.10.0'
45+
implementation 'cz.eman.kaal:kaal-core:0.10.1'
4646
```
4747

4848
TBD
@@ -51,11 +51,11 @@ TBD
5151

5252
```kotlin
5353
// Gradle Kotlin DSL
54-
implementation("cz.eman.kaal:kaal-domain:0.10.0")
54+
implementation("cz.eman.kaal:kaal-domain:0.10.1")
5555
```
5656

5757
```groovy
58-
implementation 'cz.eman.kaal:kaal-domain:0.10.0'
58+
implementation 'cz.eman.kaal:kaal-domain:0.10.1'
5959
```
6060

6161
TBD
@@ -64,11 +64,11 @@ TBD
6464

6565
```kotlin
6666
// Gradle Kotlin DSL
67-
implementation("cz.eman.kaal:kaal-presentation:0.10.0")
67+
implementation("cz.eman.kaal:kaal-presentation:0.10.1")
6868
```
6969

7070
```groovy
71-
implementation 'cz.eman.kaal:kaal-presentation:0.10.0'
71+
implementation 'cz.eman.kaal:kaal-presentation:0.10.1'
7272
```
7373

7474
TBD
@@ -77,11 +77,11 @@ TBD
7777

7878
```kotlin
7979
// Gradle Kotlin DSL
80-
implementation("cz.eman.kaal:kaal-infrastructure:0.10.0")
80+
implementation("cz.eman.kaal:kaal-infrastructure:0.10.1")
8181
```
8282

8383
```groovy
84-
implementation 'cz.eman.kaal:kaal-infrastructure:0.10.0'
84+
implementation 'cz.eman.kaal:kaal-infrastructure:0.10.1'
8585
```
8686

8787
TBD

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ android.enableJetifier=true
2222
kotlin.code.style=official
2323

2424
# Kaal version
25-
version=0.10.0
25+
version=0.10.1

0 commit comments

Comments
 (0)