ChangeLog.md in python-pickle-0.1.1 vs ChangeLog.md in python-pickle-0.2.0

- old
+ new

@@ -1,4 +1,16 @@ +### 0.2.0 / 2023-02-19 + +* Added missing support for deserializing Python `set` objects. +* Added missing support for out-of-band buffers. +* Added partial support for parsing the `PERSID` and `BINPERSID` instructions. +* Added missing support for deserializing the `INST` and `OBJ` instructions. +* Added missing support for deserializing the `EMPTY_SET`, `FROZENSET`, and + `ADDITEMS` Pickle instructions. +* Added missing support for deserializing the `NEXT_BUFFER` and + `READONLY_BUFFER` Pickle instructions. +* Map `__builtin__.set` and `builtins.set` to Ruby's `Set` class. + ### 0.1.0 / 2023-02-18 * Changed {Python::Pickle.dump} to raise a `NotImplementedError` exception. * Fixed a typo in the method signature of {Python::Pickle.dump}.