diff --git a/capnp/CHANGELOG.md b/capnp/CHANGELOG.md index 5b911f483..1bffb3005 100644 --- a/capnp/CHANGELOG.md +++ b/capnp/CHANGELOG.md @@ -1,3 +1,7 @@ +## v0.19.6 +- Fix ExactSizeIterator implementations so that they return the number of + remaining elements instead of the total length of the underlying list. + ## v0.19.5 - Fix bug in dynamic reflection where `get_named()` and `has_named()` could panic on a field that is not present in the schema. diff --git a/capnp/Cargo.toml b/capnp/Cargo.toml index 0c7cad86e..75e9b583f 100644 --- a/capnp/Cargo.toml +++ b/capnp/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "capnp" -version = "0.19.5" +version = "0.19.6" authors = [ "David Renshaw " ] license = "MIT" description = "runtime library for Cap'n Proto data encoding"