September 12, 2017
Hello,

Since last announced version 0.5.1 several bugfixes and improvements were added:

1. Improvement: "bind" local address enabled on outgoing connections (https://github.com/ikod/dlang-requests/issues/51)

2. Improvement: SNI for ssl connection implemented, as some servers require SNI (https://github.com/ikod/dlang-requests/issues/55)

3. Bugfix: Segfault fetching some URLs (https://github.com/ikod/dlang-requests/issues/54)

4. Improvement: you do not need openssl at all if you do not use https (https://github.com/ikod/dlang-requests/issues/53)

5. Minor fixes for dmd v2.076.0

6. Docs on the wiki were cleaned up and made more actual.

dlang-requests is HTTP/FTP client library, inspired by python-requests with goals:

small memory footprint
performance
simple, high level API
native D implementation

September 13, 2017
Thanks!