summaryrefslogtreecommitdiff
path: root/crates/tor-dirpublish/semver.md
Commit message (Collapse)AuthorAgeFilesLines
* tor-dirpublish: change `Uploader::upload()` to not require `Arc`Steven Engler2026-07-301-0/+1
I was a bit confused as to why `Uploader::upload()` required an `Arc<Self>`, and after looking at the code it appears that this `Arc` isn't needed anywhere outside of the `PublishReactor`. Instead `Uploader::upload()` now takes a `&self` instead of `Arc<Self>`.