Skip to content

Commit e9c8f9b

Browse files
committed
版本升级至2.6.8
1 parent 51645b9 commit e9c8f9b

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ android {
4646
}
4747

4848
dependencies {
49-
implementation 'com.github.liujingxing.rxhttp:rxhttp:2.6.7'
49+
implementation 'com.github.liujingxing.rxhttp:rxhttp:2.6.8'
5050
implementation 'com.squareup.okhttp3:okhttp:4.9.1'
51-
kapt 'com.github.liujingxing.rxhttp:rxhttp-compiler:2.6.7' //Use the annotationProcessor instead of kapt, if you use Java
51+
kapt 'com.github.liujingxing.rxhttp:rxhttp-compiler:2.6.8' //Use the annotationProcessor instead of kapt, if you use Java
5252
}
5353
```
5454

@@ -69,15 +69,15 @@ dependencies {
6969
implementation 'com.github.liujingxing.rxlife:rxlife-rxjava2:2.2.0' //RxJava2, Automatic close request
7070

7171
//rxjava3
72-
implementation 'io.reactivex.rxjava3:rxjava:3.0.6'
72+
implementation 'io.reactivex.rxjava3:rxjava:3.1.1'
7373
implementation 'io.reactivex.rxjava3:rxandroid:3.0.0'
7474
implementation 'com.github.liujingxing.rxlife:rxlife-rxjava3:2.2.0' //RxJava3, Automatic close request
7575

76-
implementation 'com.github.liujingxing.rxhttp:converter-fastjson:2.6.7'
77-
implementation 'com.github.liujingxing.rxhttp:converter-jackson:2.6.7'
78-
implementation 'com.github.liujingxing.rxhttp:converter-moshi:2.6.7'
79-
implementation 'com.github.liujingxing.rxhttp:converter-protobuf:2.6.7'
80-
implementation 'com.github.liujingxing.rxhttp:converter-simplexml:2.6.7'
76+
implementation 'com.github.liujingxing.rxhttp:converter-fastjson:2.6.8'
77+
implementation 'com.github.liujingxing.rxhttp:converter-jackson:2.6.8'
78+
implementation 'com.github.liujingxing.rxhttp:converter-moshi:2.6.8'
79+
implementation 'com.github.liujingxing.rxhttp:converter-protobuf:2.6.8'
80+
implementation 'com.github.liujingxing.rxhttp:converter-simplexml:2.6.8'
8181
}
8282
```
8383

README_zh.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ android {
8585
}
8686

8787
dependencies {
88-
implementation 'com.github.liujingxing.rxhttp:rxhttp:2.6.7'
88+
implementation 'com.github.liujingxing.rxhttp:rxhttp:2.6.8'
8989
implementation 'com.squareup.okhttp3:okhttp:4.9.1' //rxhttp v2.2.2版本起,需要手动依赖okhttp
90-
kapt 'com.github.liujingxing.rxhttp:rxhttp-compiler:2.6.7' //生成RxHttp类,纯Java项目,请使用annotationProcessor代替kapt
90+
kapt 'com.github.liujingxing.rxhttp:rxhttp-compiler:2.6.8' //生成RxHttp类,纯Java项目,请使用annotationProcessor代替kapt
9191
}
9292
```
9393

@@ -110,16 +110,16 @@ dependencies {
110110
implementation 'com.github.liujingxing.rxlife:rxlife-rxjava2:2.2.0' //管理RxJava2生命周期,页面销毁,关闭请求
111111

112112
//rxjava3
113-
implementation 'io.reactivex.rxjava3:rxjava:3.0.6'
113+
implementation 'io.reactivex.rxjava3:rxjava:3.1.1'
114114
implementation 'io.reactivex.rxjava3:rxandroid:3.0.0'
115115
implementation 'com.github.liujingxing.rxlife:rxlife-rxjava3:2.2.0' //管理RxJava3生命周期,页面销毁,关闭请求
116116

117117
//非必须,根据自己需求选择 RxHttp默认内置了GsonConverter
118-
implementation 'com.github.liujingxing.rxhttp:converter-fastjson:2.6.7'
119-
implementation 'com.github.liujingxing.rxhttp:converter-jackson:2.6.7'
120-
implementation 'com.github.liujingxing.rxhttp:converter-moshi:2.6.7'
121-
implementation 'com.github.liujingxing.rxhttp:converter-protobuf:2.6.7'
122-
implementation 'com.github.liujingxing.rxhttp:converter-simplexml:2.6.7'
118+
implementation 'com.github.liujingxing.rxhttp:converter-fastjson:2.6.8'
119+
implementation 'com.github.liujingxing.rxhttp:converter-jackson:2.6.8'
120+
implementation 'com.github.liujingxing.rxhttp:converter-moshi:2.6.8'
121+
implementation 'com.github.liujingxing.rxhttp:converter-protobuf:2.6.8'
122+
implementation 'com.github.liujingxing.rxhttp:converter-simplexml:2.6.8'
123123
}
124124
```
125125

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ maven = 1
2121

2222
okhttp_version=4.9.1
2323
rxlife_version=2.2.0
24-
rxhttp_version=2.6.7
24+
rxhttp_version=2.6.8
2525

2626
fastjson_version=1.2.76
2727
jackson_version=2.12.3

maven_dependency.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>com.github.liujingxing.rxhttp</groupId>
1818
<artifactId>rxhttp</artifactId>
19-
<version>2.6.7</version>
19+
<version>2.6.8</version>
2020
</dependency>
2121

2222
<!-- 非必须 RxJava2/RxJava3 二选一或都不选 -->
@@ -48,7 +48,7 @@
4848
<path>
4949
<groupId>com.github.liujingxing.rxhttp</groupId>
5050
<artifactId>rxhttp-compiler</artifactId>
51-
<version>2.6.7</version>
51+
<version>2.6.8</version>
5252
</path>
5353
</annotationProcessorPaths>
5454

0 commit comments

Comments
 (0)