Skip to content

Commit cc82f9b

Browse files
committed
updates for v0.2.1
1 parent 97ba267 commit cc82f9b

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

README.markdown

+3-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ repositories {
3333
}
3434
3535
dependencies {
36-
compile 'com.commonsware.cwac:netsecurity:0.2.0'
36+
compile 'com.commonsware.cwac:netsecurity:0.2.1'
3737
compile 'com.squareup.okhttp3:okhttp:3.4.1'
3838
}
3939
```
@@ -167,7 +167,7 @@ Otherwise, there are no external dependencies.
167167

168168
## Version
169169

170-
The current version is **0.2.0**.
170+
The current version is **0.2.1**.
171171

172172
## Demo
173173

@@ -213,6 +213,7 @@ Do not ask for help via social media.
213213

214214
|Library Version|AOSP Code Base |Release Notes|
215215
|:-------------:|:------------------------------------------------------------------------------------------------------:|-------------|
216+
|v0.2.1 |Android 7.1 source code from the SDK, plus [the `android-7.1.0_r7` tagged edition of `conscrypt`](https://android.googlesource.com/platform/external/conscrypt/+/android-7.1.0_r7)|bug fix per [issue #3](https://github.com/commonsguy/cwac-netsecurity/issues/3)|
216217
|v0.2.0 |Android 7.0 source code from the SDK, plus [the `android-7.0.0_r1` tagged edition of `conscrypt`](https://android.googlesource.com/platform/external/conscrypt/+/android-7.0.0_r1)|`HttpURLConnection` no longer requires `setHost()` call|
217218
|v0.1.0 |Android 7.0 source code from the SDK, plus [the `android-7.0.0_r1` tagged edition of `conscrypt`](https://android.googlesource.com/platform/external/conscrypt/+/android-7.0.0_r1)|update for new version of Android|
218219
|v0.0.1 |[`android-n-preview-4`](https://android.googlesource.com/platform/frameworks/base/+/android-n-preview-4)|initial release|

demo/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ dependencies {
1212
compile 'com.jakewharton.picasso:picasso2-okhttp3-downloader:1.0.2'
1313
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
1414
debugCompile project(':netsecurity')
15-
releaseCompile 'com.commonsware.cwac:netsecurity:0.2.0'
15+
releaseCompile 'com.commonsware.cwac:netsecurity:0.2.1'
1616
compile 'com.squareup.okhttp3:okhttp:3.4.1'
1717
}
1818

1919
android {
20-
compileSdkVersion 24
21-
buildToolsVersion "24.0.2"
20+
compileSdkVersion 25
21+
buildToolsVersion "25.0.0"
2222

2323
defaultConfig {
2424
minSdkVersion 17
25-
targetSdkVersion 24
25+
targetSdkVersion 25
2626
}
2727

2828
signingConfigs {

0 commit comments

Comments
 (0)