v0.1.1
Fix a scan abort when a custom transport returns a hand-built
httpx.Response.
coerce_response read the response URL with getattr(value, "url", None),
which only absorbs AttributeError. A directly-constructed response raises
RuntimeError on .url ("the request instance has not been set") and on
.content for an unread streaming response, so the scan died inside the
library. Attribute reads now treat any failure as absent, letting the
text fallback and the no-redirect case take over.
Found by exercising the published 0.1.0 wheel through pipx and uvx.