Skip to content

Commit

Permalink
🔖 Release version 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
David Sucharda committed Mar 28, 2022
1 parent f4c16de commit fb8b248
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 11 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
Change Log
==========

## 0.10.1 (2022-03-28)

### Added
- Added Result.chainError extension.

### Changed
- Fixed Result.onError type.

## 0.10.0 (2022-03-02)

### Added
- KLiveData - Kotlin reimplementation of the `androidx.lifecycle.LiveData`
- Basic binding screens
- View and Fragment extensions to manipulate with the software keyboard
- View and Fragment extensions to manipulate with the software keyboard
- BindingRecyclerViewAdapter with paging support
- Callbacks for BindingRecyclerViewAdapter creation and set-items events

Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Kotlin Android Architecture Library - Kaal - by eMan

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

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

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

```kotlin
// Gradle Kotlin DSL
implementation("cz.eman.kaal:kaal-core:0.10.0")
implementation("cz.eman.kaal:kaal-core:0.10.1")
```

```groovy
implementation 'cz.eman.kaal:kaal-core:0.10.0'
implementation 'cz.eman.kaal:kaal-core:0.10.1'
```

TBD
Expand All @@ -51,11 +51,11 @@ TBD

```kotlin
// Gradle Kotlin DSL
implementation("cz.eman.kaal:kaal-domain:0.10.0")
implementation("cz.eman.kaal:kaal-domain:0.10.1")
```

```groovy
implementation 'cz.eman.kaal:kaal-domain:0.10.0'
implementation 'cz.eman.kaal:kaal-domain:0.10.1'
```

TBD
Expand All @@ -64,11 +64,11 @@ TBD

```kotlin
// Gradle Kotlin DSL
implementation("cz.eman.kaal:kaal-presentation:0.10.0")
implementation("cz.eman.kaal:kaal-presentation:0.10.1")
```

```groovy
implementation 'cz.eman.kaal:kaal-presentation:0.10.0'
implementation 'cz.eman.kaal:kaal-presentation:0.10.1'
```

TBD
Expand All @@ -77,11 +77,11 @@ TBD

```kotlin
// Gradle Kotlin DSL
implementation("cz.eman.kaal:kaal-infrastructure:0.10.0")
implementation("cz.eman.kaal:kaal-infrastructure:0.10.1")
```

```groovy
implementation 'cz.eman.kaal:kaal-infrastructure:0.10.0'
implementation 'cz.eman.kaal:kaal-infrastructure:0.10.1'
```

TBD
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ android.enableJetifier=true
kotlin.code.style=official

# Kaal version
version=0.10.0
version=0.10.1

0 comments on commit fb8b248

Please sign in to comment.