Skip to content

Commit

Permalink
Provide version numbers for the old and new specifications
Browse files Browse the repository at this point in the history
Providing version numbers is good software practice.
This change will be appreciated by all users of MessagePack.
Fixes #162
  • Loading branch information
jodastephen committed Jan 27, 2014
1 parent 5839f04 commit f7bb108
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ MessagePack

MessagePack is an efficient binary serialization format. It's like JSON. but fast and small.

This repository manages specification of MessagePack format. See [Spec](spec.md) for the specification.
This repository manages the specification of the MessagePack format.
The current specification is [Version 2.0](spec.md). The older [Version 1.0](spec-old.md) specification is also available.

Implementation projects have each own repository. See [msgpack.org](http://msgpack.org/) website to find implementations and their documents.

Expand Down
4 changes: 2 additions & 2 deletions spec-old.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MessagePack format specification
# MessagePack specification v1.0

**This spec is updated. See [spec.md](spec.md) for the updated version.**
**This specification has been replaced by [Version 2.0](spec.md).**


MessagePack saves type-information to the serialized data. Thus each data is stored in **type-data** or **type-length-data** style.
Expand Down
2 changes: 1 addition & 1 deletion spec.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# MessagePack specification
# MessagePack specification v2.0

MessagePack is an object serialization specification like JSON.

Expand Down

0 comments on commit f7bb108

Please sign in to comment.