Skip to content

Commit 5569245

Browse files
committed
Preparing 0.7.0-p4 release
1 parent 629f0b3 commit 5569245

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ MessagePack for Java
88
MessagePack v7 (0.7.x) is a faster implementation of the previous version [v06](https://github.com/msgpack/msgpack-java/tree/v06), and supports all of the message pack types, including [extended format](https://github.com/msgpack/msgpack/blob/master/spec.md#formats-ext).
99

1010
## Limitation
11-
- Android and Java6 platform support is not yet ready. You can see the ongoing work here: https://github.com/msgpack/msgpack-java/tree/v07-android
1211
- Value API is in a designing phase: https://github.com/msgpack/msgpack-java/pull/109
1312

1413
## Quick Start
@@ -18,20 +17,22 @@ For Maven users:
1817
<dependency>
1918
<groupId>org.msgpack</groupId>
2019
<artifactId>msgpack-core</artifactId>
21-
<version>0.7.0-p2</version>
20+
<version>0.7.0-p4</version>
2221
</dependency>
2322
```
2423

2524
For sbt users:
2625
```
27-
libraryDependencies += "org.msgpack" % "msgpack-core" % "0.7.0-p2"
26+
libraryDependencies += "org.msgpack" % "msgpack-core" % "0.7.0-p4"
2827
```
2928

3029
- [Usage examples](msgpack-core/src/main/java/org/msgpack/core/example/MessagePackExample.java)
3130

3231
msgpack-java supports serialization and deserialization of Java objects through [jackson-databind](https://github.com/FasterXML/jackson-databind).
3332
For details, see [msgpack-jackson/README.md](msgpack-jackson/README.md). The template-based serialization mechanism used in v06 is deprecated.
3433

34+
- [Release Notes](RELEASE_NOTES.md)
35+
3536
## For MessagePack Developers [![Travis CI](https://travis-ci.org/msgpack/msgpack-java.svg?branch=v07-develop)](https://travis-ci.org/msgpack/msgpack-java)
3637

3738
msgpack-java uses [sbt](http://www.scala-sbt.org/) for building the projects. For the basic usage of sbt, see:

RELEASE_NOTES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Release Notes
2+
3+
* 2015-01-19 0.7.0-p4 release
4+
* Supporting some java6 platform and Android
5+
6+

0 commit comments

Comments
 (0)