* Add a new method `get_single_photo_sizes()` which wraps all the information returned by the `flickr.photos.getSizes` API.
1.12.0
* Add a new method `get_single_photo_info()` which wraps all the information returned by the `flickr.photos.getInfo` API.
1.11.0
* Refactor the internals to expose a couple of new methods for getting a single page or a continuous stream of photos.
This should eventually allow callers to be much more specific about what `extras` and fields they want to retrieve.
1.10.1
* Fix a bug in `list_all_comments()` for comments where the commenter has no realname set in their profile – it now returns `None` for `authorname` instead of an empty string.
1.10.0
* Add a new method `list_all_comments(photo_id: str) -> list[Comment]` which returns a list of all the comments on a photo.
1.9.2
* Tweak the retrying on flaky API calls to (i) retry up to 5 times, up from 1 and (ii) use an exponential backoff to wait between retries. Both of these should make it more likely that a flaky API call will eventually succeed.