From 2d4f21b292c3b4c89d9b40572d980d731e65a6c1 Mon Sep 17 00:00:00 2001 From: Vladimir Matveev Date: Thu, 11 Jun 2015 14:33:05 +0300 Subject: [PATCH] Updated release notes --- notes/0.1.3.markdown | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 notes/0.1.3.markdown diff --git a/notes/0.1.3.markdown b/notes/0.1.3.markdown new file mode 100644 index 0000000..6a73211 --- /dev/null +++ b/notes/0.1.3.markdown @@ -0,0 +1,11 @@ +Added two new features - serialization objects and object key serialization: + +* serialization objects allow one to "specialize" generic `read()`/`write()` pickler + methods for some specific type for convenience and type safety; +* object key serialization makes it possible to serialize maps with arbitrary keys + as backend objects (which currently is possible only for string keys) provided that + there is a special serializer for key type is present in implicit scope. It is also now + possible to disallow the default behavior when maps are serialized as arrays of arrays + and only enable it explicitly for specific key types. + +More information can be found in the [readme](https://github.com/netvl/picopickle#readme). \ No newline at end of file