Skip to content

Commit cb7f642

Browse files
committed
Update README.md
1 parent 1279169 commit cb7f642

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ MessagePack for Java
55

66
* Message Pack specification: <https://github.com/msgpack/msgpack/blob/master/spec.md>
77

8-
MessagePack v7 (0.7.x) is a faster implementation of the previous version [v06](https://github.com/msgpack/msgpack-java/tree/v06), and
8+
MessagePack v7 (or later) is a faster implementation of the previous version [v06](https://github.com/msgpack/msgpack-java/tree/v06), and
99
supports all of the message pack types, including [extension format](https://github.com/msgpack/msgpack/blob/master/spec.md#formats-ext).
1010

1111
## Limitation
@@ -18,13 +18,13 @@ For Maven users:
1818
<dependency>
1919
<groupId>org.msgpack</groupId>
2020
<artifactId>msgpack-core</artifactId>
21-
<version>0.7.1</version>
21+
<version>0.8.0</version>
2222
</dependency>
2323
```
2424

2525
For sbt users:
2626
```
27-
libraryDependencies += "org.msgpack" % "msgpack-core" % "0.7.1"
27+
libraryDependencies += "org.msgpack" % "msgpack-core" % "0.8.0"
2828
```
2929

3030
For gradle users:
@@ -34,7 +34,7 @@ repositories {
3434
}
3535
3636
dependencies {
37-
compile 'org.msgpack:msgpack-core:0.7.1'
37+
compile 'org.msgpack:msgpack-core:0.8.0'
3838
}
3939
```
4040

0 commit comments

Comments
 (0)