Skip to content

Commit f69b881

Browse files
authored
Add a fresh coat of paint to the README (#4284)
1 parent b11e060 commit f69b881

File tree

1 file changed

+10
-13
lines changed

1 file changed

+10
-13
lines changed

README.md

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
# Jedis
22

33
[![Release](https://img.shields.io/github/release/redis/jedis.svg?sort=semver)](https://github.com/redis/jedis/releases/latest)
4-
[![Maven Central](https://img.shields.io/maven-central/v/redis.clients/jedis.svg)](https://search.maven.org/artifact/redis.clients/jedis)
4+
[![Maven Central](https://img.shields.io/maven-central/v/redis.clients/jedis.svg)](https://central.sonatype.com/artifact/redis.clients/jedis)
55
[![Javadocs](https://www.javadoc.io/badge/redis.clients/jedis.svg)](https://www.javadoc.io/doc/redis.clients/jedis)
6-
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE.txt)
7-
[![Integration](https://github.com/redis/jedis/actions/workflows/integration.yml/badge.svg?branch=master)](https://github.com/redis/jedis/actions/workflows/integration.yml)
6+
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
87
[![codecov](https://codecov.io/gh/redis/jedis/branch/master/graph/badge.svg?token=pAstxAAjYo)](https://codecov.io/gh/redis/jedis)
98
[![Discord](https://img.shields.io/discord/697882427875393627?style=flat-square)](https://discord.gg/redis)
109

@@ -29,13 +28,10 @@ Are you looking for a high-level library to handle object mapping? See [redis-om
2928
## Supported Redis versions
3029

3130
The most recent version of this library supports redis version
32-
[5.0](https://github.com/redis/redis/blob/5.0/00-RELEASENOTES),
33-
[6.0](https://github.com/redis/redis/blob/6.0/00-RELEASENOTES),
34-
[6.2](https://github.com/redis/redis/blob/6.2/00-RELEASENOTES),
35-
[7.0](https://github.com/redis/redis/blob/7.0/00-RELEASENOTES),
3631
[7.2](https://github.com/redis/redis/blob/7.2/00-RELEASENOTES),
37-
[7.4](https://github.com/redis/redis/blob/7.4/00-RELEASENOTES) and
38-
[8.0](https://github.com/redis/redis/blob/8.0/00-RELEASENOTES).
32+
[7.4](https://github.com/redis/redis/blob/7.4/00-RELEASENOTES),
33+
[8.0](https://github.com/redis/redis/blob/8.0/00-RELEASENOTES) and
34+
[8.2](https://github.com/redis/redis/blob/8.2/00-RELEASENOTES).
3935

4036
The table below highlights version compatibility of the most-recent library versions with Redis and JDK versions. Compatibility means communication features, and Redis command capabilities.
4137

@@ -47,6 +43,7 @@ The table below highlights version compatibility of the most-recent library vers
4743
| >= 5.0 | Version 6.0 to current | 8, 11, 17, 21 |
4844
| >= 5.2 | Version 7.2 to current | 8, 11, 17, 21 |
4945
| >= 6.0 | Version 7.2 to current | 8, 11, 17, 21 |
46+
| >= 7.0 | Version 7.2 to current | 8, 11, 17, 21 |
5047

5148
## Getting started
5249

@@ -56,16 +53,16 @@ To get started with Jedis, first add it as a dependency in your Java project. If
5653
<dependency>
5754
<groupId>redis.clients</groupId>
5855
<artifactId>jedis</artifactId>
59-
<version>6.0.0</version>
56+
<version>6.2.0</version>
6057
</dependency>
6158
```
6259

6360
To use the cutting-edge Jedis, check [here](/docs/jedis-maven.md).
6461

65-
Next, you'll need to connect to Redis. Consider installing a redis-stack docker:
62+
Next, you'll need to connect to Redis. Consider installing a redis server with docker:
6663

6764
```bash
68-
docker run -p 6379:6379 -it redis/redis-stack:latest
65+
docker run -p 6379:6379 -it redis:latest
6966
```
7067

7168
For many applications, it's best to use a connection pool. You can instantiate a Jedis connection pool like so:
@@ -148,7 +145,7 @@ For more details and examples, please refer to the [Advanced Usage](docs/advance
148145

149146
## Documentation
150147

151-
The [Jedis wiki](http://github.com/redis/jedis/wiki) contains several useful articles for using Jedis.
148+
The [Jedis documentation site](https://redis.github.io/jedis/) contains several useful articles for using Jedis.
152149

153150
You can also check the [latest Jedis Javadocs](https://www.javadoc.io/doc/redis.clients/jedis/latest/index.html).
154151

0 commit comments

Comments
 (0)