SECURITY: tcnative version should be 2.0.6.Final (#3611)

This commit is contained in:
zpencer 2017-10-24 13:29:18 -07:00 committed by GitHub
parent 0ef9ec6275
commit fedef8f866
1 changed files with 4 additions and 4 deletions

View File

@ -62,7 +62,7 @@ In Maven, you can use the [os-maven-plugin](https://github.com/trustin/os-maven-
<dependency> <dependency>
<groupId>io.netty</groupId> <groupId>io.netty</groupId>
<artifactId>netty-tcnative-boringssl-static</artifactId> <artifactId>netty-tcnative-boringssl-static</artifactId>
<version>2.0.5.Final</version> <version>2.0.6.Final</version>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>
@ -80,7 +80,7 @@ buildscript {
} }
dependencies { dependencies {
compile 'io.netty:netty-tcnative-boringssl-static:2.0.5.Final' compile 'io.netty:netty-tcnative-boringssl-static:2.0.6.Final'
} }
``` ```
@ -115,7 +115,7 @@ In Maven, you can use the [os-maven-plugin](https://github.com/trustin/os-maven-
<dependency> <dependency>
<groupId>io.netty</groupId> <groupId>io.netty</groupId>
<artifactId>netty-tcnative</artifactId> <artifactId>netty-tcnative</artifactId>
<version>2.0.5.Final</version> <version>2.0.6.Final</version>
<classifier>${tcnative.classifier}</classifier> <classifier>${tcnative.classifier}</classifier>
</dependency> </dependency>
</dependencies> </dependencies>
@ -183,7 +183,7 @@ if (osdetector.os == "linux" && osdetector.release.isLike("fedora")) {
} }
dependencies { dependencies {
compile 'io.netty:netty-tcnative:2.0.5.Final:' + tcnative_classifier compile 'io.netty:netty-tcnative:2.0.6.Final:' + tcnative_classifier
} }
``` ```