diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e5580f..55cb4be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# Version 0.20.3 (2026-07-26) + +This is a small bugfix release. + +## Bug fixes / improvements + +- Fix a panic when encoding a name that contains a label longer than 63 bytes. The packet write path now reports an error and skips the offending question or record, instead of asserting. (#484, commit `08362e3`) + +## All changes + +* `a574e93 2026-07-24` docs: add RFC 6762 compliance rows for v0.20.2 features (keepsimple1) +* `08362e3 2026-07-24` fix: Panic in write_utf8 (assert s.len() < 64) (#484) (keepsimple1) + # Version 0.20.2 (2026-07-16) This is a feature and bugfix release focused on improved RFC 6762 compliance. diff --git a/Cargo.toml b/Cargo.toml index b1c9e03..d8e46ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdns-sd" -version = "0.20.2" +version = "0.20.3" authors = ["keepsimple "] edition = "2018" rust-version = "1.71.0"