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