Released 0.9.4 Fixed implementation of Swush.pair(key,value) to properly detect when it should automatically quote (and escape) the value string. Released 0.9.3 (04/08/2009) This is the first actually usable release, I have been using it in production for some time now. Swush is still in beta though. Changed arrays syntax and relevant API. arrays are now in the form : name {a b c}, and can have both string elements and normal swush nodes : name {a b c:d d{1:2}} Improved Swush api: Added various selector API calls to the Swush class, for example: public long selectLongProperty(String selector) throws SwushException public float selectFloatProperty(String selector, float _default) throws SwushException Added various manipulator methods, for example: public Swush addPair(String name, String value) public Swush addNode(String name) public Swush addArray(String name, String ... array) General bug fixes. Released 0.92 (08/05/2009) Created a test suite that can test any implementation (see test/TestDriver.java) Added file header (@swush [encoding]) Added preliminary support for arrays, for example : name[a b c] Released 0.91 Fixed comments to be properly ignored. Fixed escaped quotes \" to be passed to the client unescaped.