Skip to content

Commit

Permalink
release 1.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
inponomarev committed Nov 17, 2024
1 parent 902fd7d commit d10f046
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Add it as a test dependency in Maven as:
<dependency>
<groupId>com.github.fppt</groupId>
<artifactId>jedis-mock</artifactId>
<version>1.1.7</version>
<version>1.1.8</version>
<scope>test</scope>
</dependency>
```
Expand Down Expand Up @@ -167,7 +167,7 @@ jedis.eval(script, 1, "mylist", "10");
jedis.lrange("mylist", 0, -1));
```

:warning: Lua language capabilities are restricted to what is provided by current LuaJ version. Methods provided by `redis` global object are currently restricted to what was available in Redis version 2.6.0 (see [redis.lua](src/main/resources/redis.lua)).
:warning: Lua language capabilities are restricted to what is provided by current LuaJ version. Methods provided by `redis` global object are currently restricted to what was available in Redis version 2.6.0 (see [redis.lua](src/main/resources/redis.lua)).

Feel free to report an issue if you have any problems with Lua scripting in Jedis-Mock.

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>com.github.fppt</groupId>
<artifactId>jedis-mock</artifactId>
<version>1.1.8-SNAPSHOT</version>
<version>1.1.8</version>
<packaging>jar</packaging>
<name>jedis-mock</name>
<description>In memory Redis mock for testing</description>
Expand Down

0 comments on commit d10f046

Please sign in to comment.