annotate src/capnproto-0.6.0/doc/_posts/2013-06-27-capn-proto-beta-release.md @ 148:b4bfdf10c4b3

Update Win64 capnp builds to v0.6
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 22 May 2017 18:56:49 +0100
parents 45360b968bf4
children
rev   line source
cannam@147 1 ---
cannam@147 2 layout: post
cannam@147 3 title: Cap'n Proto Beta Release
cannam@147 4 author: kentonv
cannam@147 5 ---
cannam@147 6
cannam@147 7 It's been nearly three months since Cap'n Proto was originally announced, and by now you're
cannam@147 8 probably wondering what I've been up to. The answer is basically
cannam@147 9 [non-stop coding](https://github.com/kentonv/capnproto/commits/master). Features were implemented,
cannam@147 10 code was refactored, tests were written, and now Cap'n Proto is beginning to resemble something
cannam@147 11 like a real product. But as is so often the case with me, I've been so engrossed in coding that I
cannam@147 12 forgot to post updates!
cannam@147 13
cannam@147 14 Well, that changes today, with the first official release of Cap'n Proto, v0.1. While not yet
cannam@147 15 "done", this release should be usable for Real Work. Feature-wise, for C++, the library is roughly
cannam@147 16 on par with [Google's Protocol Buffers](http://protobuf.googlecode.com) (which, as you know, I used
cannam@147 17 to maintain). Features include:
cannam@147 18
cannam@147 19 * Types: numbers, bytes, text, enums, lists, structs, and unions.
cannam@147 20 * Code generation from schema definition files.
cannam@147 21 * Reading from and writing to file descriptors (or other streams).
cannam@147 22 * Text-format output (e.g. for debugging).
cannam@147 23 * Reflection, for writing generic code that dynamically walks over message contents.
cannam@147 24 * Dynamic schema loading (to manipulate types not known at compile time).
cannam@147 25 * Code generator plugins for extending the compiler to support new languages.
cannam@147 26 * Tested on Linux and Mac OSX with GCC and Clang.
cannam@147 27
cannam@147 28 Notably missing from this list is RPC (something Protocol Buffers never provided either). The RPC
cannam@147 29 system is still in the design phase, but will be implemented over the coming weeks.
cannam@147 30
cannam@147 31 Also missing is support for languages other than C++. However, I'm happy to report that a number
cannam@147 32 of awesome contributors have stepped up and are working on
cannam@147 33 [implementations in C, Go, Python]({{ site.baseurl }}otherlang.html), and a few others not yet
cannam@147 34 announced. None of these are "ready" just yet, but watch this space. (Would you like to work on
cannam@147 35 an implementation in your favorite language?
cannam@147 36 [Let us know!](https://groups.google.com/group/capnproto))
cannam@147 37
cannam@147 38 Going forward, Cap'n Proto releases will occur more frequently, perhaps every 2-4 weeks.
cannam@147 39 Consider [signing up for release announcements](https://groups.google.com/group/capnproto-announce).
cannam@147 40
cannam@147 41 In any case, go [download the release]({{ site.baseurl }}install.html) and
cannam@147 42 [tell us your thoughts](https://groups.google.com/group/capnproto).