Releases: DrewMcArthur/msgpack-bal
Releases · DrewMcArthur/msgpack-bal
v0.0.7 Published to bal central
Updated the documentation a little and published to bal central. The library can now be imported with import drewmca/msgpack
What's Changed
- Cleanup/specific error msgs by @DrewMcArthur in #3
- Rename readme.md to README.md by @DrewMcArthur in #8
Full Changelog: v0.0.6...v0.0.7
v0.0.6 impl bin and introduce error types
implemented byte arrays, the bin family format type. also introduced some slightly better error handling/descriptions.
What's Changed
- Impl/bin by @DrewMcArthur in #2
Full Changelog: v0.0.5...v0.0.6
v0.0.5 impl arrays, maps, and shift-decoding refactor!
- implemented arrays and maps
- introduced
function core:shift(byte[] data) returns [byte first, byte[] rest];
- refactored decoding to utilize
core:shift
, and pop bytes offdata
as they're consumed and decoded
What's Changed
- impl arrays and maps by @DrewMcArthur in #1
Full Changelog: v0.0.4...v0.0.5
v0.0.4 implement strings and ints
implemented:
- ints (except for signed Int64)
- strings (if length > 2^16, it's untested)
- benchmarking tests
- some modularization of code, mainly into encoding/decoding and msgpack format types. so code that handles encoding strings lives in
modules/encoding/string.bal
Full Changelog: v0.0.3...v0.0.4
v0.0.3: fixstr, fixint, fixarray, fixmap implemented
implemented some of the main Fix
ed types.
Full Changelog: https://github.com/DrewMcArthur/msgpack-bal/commits/v0.0.3