rustls / rustls-ffi

Use Rustls from any language
Other
124 stars 31 forks source link

docs: update changelog #372

Closed cpu closed 7 months ago

cpu commented 7 months ago

This branch adds an updated CHANGELOG.md covering the to-be-published 0.12.0 release. Additionally it fixes one misnamed function caught during review of the changes since the last release, and a fn that was accidentally dropped from the rustls.h interface.

To generate the changelog content I pulled the 0.11.0 src/rustls.h and the src/rustls.h from main, ran them through gcc to remove comments and post-processed to remove whitespace and # lines. I then reviewed the diff and tried to account for all of the changes in the text:

gcc -fpreprocessed -E old.rustls.h | sed '/^\s*$/d' | grep -v '#' > old.h
gcc -fpreprocessed -E src/rustls.h | sed '/^\s*$/d' | grep -v '#' > new.h
diff new.h old.h
cpu commented 7 months ago