Skip to content

Commit dad7a05

Browse files
Update version 0.3.0 (#12)
1 parent 5d3ea09 commit dad7a05

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# CHANGELOG
22

3+
## Version 0.3.0
4+
5+
- Coroutines interfaces
6+
- Update NRF BLE 2.3.0
7+
- Add rx2 module
8+
39
## Version 0.2.1
410

511
- Fix regression bugs for version 0.2.0

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This library is to solve all the pains that many Android developers have to endu
88

99
By using functional programming approach and Rxjava interface, this library (will) provides:
1010

11-
- Sane and simple Api with [Rxjava](https://github.com/ReactiveX/RxJava).
11+
- Sane and simple Api with Coroutines/Flow and [Rxjava](https://github.com/ReactiveX/RxJava).
1212
- The best error handling ever which is backed by [Arrow](https://arrow-kt.io/).
1313
- Support all BLE operations (read, write, notifications, bond). Thanks to [NordicSemiconductor/Android-BLE-Library](https://github.com/NordicSemiconductor/Android-BLE-Library)!
1414

@@ -22,7 +22,8 @@ You can get `Beckon` by using [Jitpack](https://jitpack.io/#technocreatives/beck
2222
maven { url 'https://jitpack.io' }
2323
}
2424
25-
implementation "com.github.technocreatives:beckon:$beckon"
25+
implementation "com.github.technocreatives.beckon-android:beckon:$beckon"
26+
implementation "com.github.technocreatives.beckon-android:beckon-rx2:$beckon"
2627
```
2728

2829
## Compatibility <a name = "compatibility"></a>
@@ -34,9 +35,6 @@ Supports RxJava2 and Arrow version `0.13.2`.
3435
Any bug reports, feature requests, questions and pull requests are very welcome.
3536

3637

37-
## Usage
38-
39-
TBD (You can check the included example or Axkid project)
4038

4139
## Feature
4240

beckon-rx2/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ android {
1212
targetSdkVersion 30
1313
buildToolsVersion = "30.0.2"
1414
versionCode 1
15-
versionName "1.0"
15+
versionName "0.3.0"
1616

1717
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1818

@@ -106,7 +106,7 @@ afterEvaluate {
106106
from components.release
107107
groupId = 'com.technocreatives.beckon-android'
108108
artifactId = 'beckon-rx2'
109-
version = '0.1.0'
109+
version = '0.3.0'
110110
}
111111
}
112112
}

beckon/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ android {
1313
targetSdkVersion 30
1414
buildToolsVersion = "30.0.2"
1515
versionCode 1
16-
versionName "0.2.1"
16+
versionName "0.3.0"
1717

1818
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1919

@@ -147,7 +147,7 @@ afterEvaluate {
147147
from components.debug
148148
groupId = 'com.technocreatives.beckon-android'
149149
artifactId = 'beckon'
150-
version = '0.1.0'
150+
version = '0.3.0'
151151
}
152152
}
153153
}

0 commit comments

Comments
 (0)