Skip to content

Commit f50fb3b

Browse files
committed
fix: Fix version number in README and finally fix Jitpack build
1 parent 1d52b72 commit f50fb3b

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Vector
22

3+
[![Build Status](https://travis-ci.com/haroldadmin/Vector.svg?branch=master)](https://travis-ci.com/haroldadmin/Vector)
4+
35
Vector is an Android library to help implement the MVI architecture pattern.
46

57
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.
@@ -100,7 +102,7 @@ And then add the following dependency in your module's `build.gradle` file:
100102

101103
```groovy
102104
dependencies {
103-
implementation "com.github.haroldadmin:Vector:0.0.1"
105+
implementation "com.github.haroldadmin:Vector:0.0.3"
104106
}
105107
```
106108

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ buildscript {
55
"targetSdk" : 28,
66
"kotlin" : "1.3.31",
77
"agp" : "3.5.0-beta03",
8-
"versionCode": 2,
9-
"versionName": "0.0.2"
8+
"versionCode": 3,
9+
"versionName": "0.0.3"
1010
]
1111

1212
ext.versions = [

0 commit comments

Comments
 (0)