diff --git a/README.md b/README.md index db6dbc3..40c663a 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,8 @@ _Current Build_ # Introduction to Jedis Extra Utils +**(formerly known as InterruptedJedisLocks)** + This is a Java project based on a collection of utilities and helpers to be used with Redis and with Jedis libraries. Originally conceived as a group of locks, then some synchronization primitives, it has grown until having a respectable collection of utilities. @@ -79,6 +81,12 @@ This project uses JDK11 and Gradle (provided gradlew 7.5.1), and its build top o Also, you will find a little Groovy and a docker composer to setup a testing redis server. +### Compatibility Matrix + +| Library version | Jedis version | JDK Version | +|-----------------|---------------|-------------| +| 5.3.0 | 4.4.X | JDK11 | + ## Miscelanea diff --git a/gradle.properties b/gradle.properties index 497fbea..d06c38a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,11 +1,11 @@ -projectVersion=5.2.0 +projectVersion=5.3.0 #javaVersion=JavaVersion.VERSION_11 javaVersion=11 # https://github.com/johnrengelman/shadow shadowVersion=7.1.2 -# https://mvnrepository.com/artifact/redis.clients/jedis/4.3.1 +# https://mvnrepository.com/artifact/redis.clients/jedis/4.4.3 jedisVersion=4.4.3 # https://mvnrepository.com/artifact/org.javassist/javassist javassistVersion=3.29.2-GA diff --git a/src/main/docker/docker-compose.yml b/src/main/docker/docker-compose.yml index e039d64..c247b38 100644 --- a/src/main/docker/docker-compose.yml +++ b/src/main/docker/docker-compose.yml @@ -1,8 +1,8 @@ version: '3.2' services: redis: - image: 'redis:5.0.13' + image: 'redis:6.2.14' hostname: redis - container_name: redis5013 + container_name: redis6214 ports: - '6379:6379'