Skip to content

Commit

Permalink
🔖 Kaal Release v0.5.0
Browse files Browse the repository at this point in the history
Release of Kaal v0.5.0. See CHANGELOG.md for more details
  • Loading branch information
vsouhrada committed Dec 3, 2019
1 parent 0df9884 commit 641faad
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 15 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
Change Log
==========

## 0.5.0 (TBD)
## 0.5.0 (2019-12-03)

### Added
- :sparkles: [#5](https://github.com/eManPrague/kaal/issues/5): You can define Fragment or Activity `layout id` by using a constructor
```kotlin
class MainActivity : BaseActivity(R.layout.activity_main)

// Fragment
class MyFragment: BaseFragment(R.layout.fragment_my)
```
### Changed
- Koin updated to v1.3.61
- Koin updated to v2.0.1
- Gradle 5.6.4

Expand Down
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,57 +10,57 @@ but you can use it also in data and infrastructure, because you need e.g. instan


#### Kaal Core
[![Download](https://api.bintray.com/packages/emanprague/maven/cz.eman.kaal.core/images/download.svg?version=0.4.0)](https://bintray.com/emanprague/maven/cz.eman.kaal.core/0.4.0/link)
[![Download](https://api.bintray.com/packages/emanprague/maven/cz.eman.kaal.core/images/download.svg?version=0.5.0)](https://bintray.com/emanprague/maven/cz.eman.kaal.core/0.5.0/link)

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

```groovy
implementation 'cz.eman.kaal:kaal-core:0.4.0'
implementation 'cz.eman.kaal:kaal-core:0.5.0'
```

TBD

#### Kaal Domain
[![Download](https://api.bintray.com/packages/emanprague/maven/cz.eman.kaal.domain/images/download.svg?version=0.4.0)](https://bintray.com/emanprague/maven/cz.eman.kaal.domain/0.4.0/link)
[![Download](https://api.bintray.com/packages/emanprague/maven/cz.eman.kaal.domain/images/download.svg?version=0.5.0)](https://bintray.com/emanprague/maven/cz.eman.kaal.domain/0.5.0/link)

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

```groovy
implementation 'cz.eman.kaal:kaal-domain:0.4.0'
implementation 'cz.eman.kaal:kaal-domain:0.5.0'
```

TBD

#### Kaal Presentation
[![Download](https://api.bintray.com/packages/emanprague/maven/cz.eman.kaal.presentation/images/download.svg?version=0.4.0)](https://bintray.com/emanprague/maven/cz.eman.kaal.presentation/0.4.0/link)
[![Download](https://api.bintray.com/packages/emanprague/maven/cz.eman.kaal.presentation/images/download.svg?version=0.5.0)](https://bintray.com/emanprague/maven/cz.eman.kaal.presentation/0.5.0/link)

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

```groovy
implementation 'cz.eman.kaal:kaal-presentation:0.4.0'
implementation 'cz.eman.kaal:kaal-presentation:0.5.0'
```

TBD

#### Kaal Infrastructure
[![Download](https://api.bintray.com/packages/emanprague/maven/cz.eman.kaal.domain/images/download.svg?version=0.4.0)](https://bintray.com/emanprague/maven/cz.eman.kaal.domain/0.4.0/link)
[![Download](https://api.bintray.com/packages/emanprague/maven/cz.eman.kaal.domain/images/download.svg?version=0.5.0)](https://bintray.com/emanprague/maven/cz.eman.kaal.domain/0.5.0/link)

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

```groovy
implementation 'cz.eman.kaal:kaal-infrastructure:0.4.0'
implementation 'cz.eman.kaal:kaal-infrastructure:0.5.0'
```

TBD
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ android.enableJetifier=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official

#Core Toolking SDK version
version=0.5.0-SNAPSHOT
#Kaal version version
version=0.5.0

0 comments on commit 641faad

Please sign in to comment.