Feedback: Jedis guide (Java)
Closed this issue · 1 comments
gilberto-009199 commented
Page https://redis.io/docs/latest/develop/clients/jedis/
New Version Jedis.
Swap this:
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>6.0.0</version>
</dependency>
repositories {
mavenCentral()
}
//...
dependencies {
implementation 'redis.clients:jedis:6.0.0'
//...
}
That's why:
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>6.1.0</version>
</dependency>
repositories {
mavenCentral()
}
//...
dependencies {
implementation 'redis.clients:jedis:6.1.0'
//...
}
New version in maven: https://mvnrepository.com/artifact/redis.clients/jedis/6.1.0
andy-stark-redis commented
@gilberto-009199 Thanks for spotting this! I've made a PR to fix it, which should be reviewed and merged very shortly.