Zoom v0.19.1 Release Notes
Release Date: 2018-03-14 // about 5 years ago-
๐ This release fixes a small error in the README documentation. Thanks @ozburo for noticing the error and submitting a PR.
Previous changes from v0.19.0
-
๐ The main purpose of this release is to address #27, but there are also many other small changes to improve code quality and satisfy gometalinter.
โฌ๏ธ Because the linter requires changing some exported identifiers from
Id
toID
, this is a breaking change and is not backwards-compatible. However, there are no behavior changes and upgrading should be pretty straightforward.Full Changelog
Model.ModelId
renamed toModel.ModelID
.Model.SetModelId
renamed toModel.SetModelID
.RandomId
renamed toRandomID
.Query.Ids
renamed toQuery.IDs
.Query.StoreIds
renamed toQuery.StoreIDs
.Transaction.ExtractIdsFromFieldIndex
renamed toTransaction.ExtractIDsFromFieldIndex
.Transaction.ExtractIdsFromStringIndex
renamed toTransaction.ExtractIDsFromStringIndex
.Transaction.DeleteModelsBySetIds
renamed toTransaction.DeleteModelsBySetIDs
.Transaction.Ids
renamed toTransaction.IDs
.Transaction.StoreIds
renamed toTransaction.StoreIDs
.- Updated CONTRIBUTING.md with simplified instructions for pull requests.
- ๐ Various other typo fixes and code style improvements which do not affect exported identifiers.