Cereal v1.1.0
Cereal 1.1.0 Release
This is the second release of Cereal, which just adds a minor feature.
This update is backwards compatible: it has all the features of the previous release, but it adds some new things too. Files created with version 1.0.0 can be read using version 1.1.0, but files created with version 1.1.0 which use the new features cannot be read using Cereal version 1.0.0. If you don't use those new features, both versions are fully compatible.
Features
- Added
std::string
arrays: Now arrays can store multiple strings. Keep in mind that the absolute maximum serialized database size is 2^32 bytes (around 4 Gb). Try to keep this arrays under that maximum, keeping in mind that each string needs2 + character count
bytes, or else it may cause a few issues.