Releases: tendermint/go-amino
Releases · tendermint/go-amino
ProtoAmino 0.10.1 Release
ProtoAmino 0.10.0 Release
0.10.0 (June 12, 2018)
BREAKING CHANGE:
- 100% Proto3 compatibility for primitive types, repeated fields, and embedded structs/messages.
- BigEndian -> LittleEndian
- [u]int[64/32] is (signed) Varint by default, "fixed32" and "fixed64" to use 4 and 8 byte types.
- Amino:JSON [u]int64 and ints are strings.
- Enforce UTC timezone for JSON encoding of time.
ProtoAmino
0.10.0-rc2 (June 10, 2018)
BREAKING CHANGE:
- 100% Proto3 compatibility for primitive types, repeated fields, and embedded structs/messages.
- BigEndian -> LittleEndian
- [u]int[64/32] is (signed) Varint by default, "fixed32" and "fixed64" to use 4 and 8 byte types.
- Amino:JSON [u]int64 and ints are strings.
0.10.0-rc1
fix all tests
ProtoAmino
This is the first release candidate for 0.10, a release of Amino that is Proto3 compatible.
0.9.10: Merge pull request #151 from tendermint/jae/jsontypename
BREAKING CHANGE:
- Amino:JSON encoding of interfaces use the registered concrete type name, not the disfix bytes.
0.9.9: Merge pull request #144 from tendermint/jae/fixmarshalamino
0.9.9 (May 1, 2018)
BUG FIXES:
- MarshalAmino/UnmarshalAmino actually works (sorry!)
0.9.8-rc0
0.9.8: Implement DeepCopy() and bump version (#142)
0.9.8 (April 26, 2018)
NEW FEATURES:
- DeepCopy() copies any Amino object (with support for .DeepCopy() and
.MarshalAmino/UnmarshalAmino().