Skip to content

Commit

Permalink
Merge branch 'master' into 0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mbaxter committed Apr 23, 2021
2 parents 84a9c63 + 6cac516 commit 73575e3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Hosting of artefacts is graciously provided by [Cloudsmith](https://cloudsmith.c
maven { url "https://dl.cloudsmith.io/public/libp2p/jvm-libp2p/maven/" }
}
implementation 'io.libp2p:jvm-libp2p-minimal:0.7.0-RELEASE'
implementation 'io.libp2p:jvm-libp2p-minimal:0.8.1-RELEASE'
```
### Using Maven
Add the repository to the `dependencyManagement` section of the pom file:
Expand All @@ -96,7 +96,7 @@ And then add jvm-libp2p as a dependency:
<dependency>
<groupId>io.libp2p</groupId>
<artifactId>jvm-libp2p-minimal</artifactId>
<version>0.7.0-RELEASE</version>
<version>0.8.1-RELEASE</version>
<type>pom</type>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import java.nio.file.Paths
// ./gradlew publish -PcloudsmithUser=<user> -PcloudsmithApiKey=<api-key>

group = "io.libp2p"
version = "0.7.0-RELEASE"
version = "0.8.1-RELEASE"
description = "a minimal implementation of libp2p for the jvm"

plugins {
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/io/libp2p/pubsub/PubsubRouter.kt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ interface PubsubMessage {
override fun equals(other: Any?): Boolean

/**
* WARNING: Use collision free functions only
* WARNING: Use collision resistant functions only
* Else the HashMap collision attack vector is open
*/
override fun hashCode(): Int
Expand Down

0 comments on commit 73575e3

Please sign in to comment.