Skip to content

Commit

Permalink
🔖 Release version 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
smidf committed Jan 29, 2024
1 parent 92a690e commit 12fe172
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 16 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Change Log
==========

## 0.11.0 (2024-01-29)

### Fixed
- `CancellationException` isn't caught and mapped to error.

### Changed
- `KaalRetrofitCaller.handleCallException` is as `open`.
- Migrated to Kotlin 1.9 and AGP 8

### Removed
- Removed deprecated `callResult` function and `textWatcher` extension.

## 0.10.1 (2022-03-28)

### Added
Expand Down
24 changes: 9 additions & 15 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.1)
[![Latest version](https://img.shields.io/github/v/release/eManPrague/kaal)](https://github.com/eManPrague/kaal/releases/tag/v0.11.0)

[![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.1")
implementation("cz.eman.kaal:kaal-core:0.11.0")
```

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

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

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

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

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

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

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

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

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

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

TBD

##### Responsible Persons
* [Vaclav Souhrada](mailto:vaclav.souhrada@eman.cz)
- [Roman Holomek](mailto:roman.holomek@eman.cz)
- [Stefan Toth](mailto:stefan.toth@eman.cz)
- [Filip Šmíd](mailto:filip.smid@eman.cz)
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.1
version=0.11.0

0 comments on commit 12fe172

Please sign in to comment.