Skip to content

Commit

Permalink
fix: Fix version number in README and finally fix Jitpack build
Browse files Browse the repository at this point in the history
  • Loading branch information
haroldadmin committed Jun 4, 2019
1 parent 1d52b72 commit f50fb3b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Vector

[![Build Status](https://travis-ci.com/haroldadmin/Vector.svg?branch=master)](https://travis-ci.com/haroldadmin/Vector)

Vector is an Android library to help implement the MVI architecture pattern.

It is inspired from [MvRx](https://www.github.com/airbnb/mvrx) and [Roxie](https://github.com/ww-tech/roxie), but unlike them it is **built completely using Kotlin Coroutines** instead of RxJava. As such, it internally only uses Coroutine primitives, and has extensive support for Suspending functions.
Expand Down Expand Up @@ -100,7 +102,7 @@ And then add the following dependency in your module's `build.gradle` file:

```groovy
dependencies {
implementation "com.github.haroldadmin:Vector:0.0.1"
implementation "com.github.haroldadmin:Vector:0.0.3"
}
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ buildscript {
"targetSdk" : 28,
"kotlin" : "1.3.31",
"agp" : "3.5.0-beta03",
"versionCode": 2,
"versionName": "0.0.2"
"versionCode": 3,
"versionName": "0.0.3"
]

ext.versions = [
Expand Down

0 comments on commit f50fb3b

Please sign in to comment.