Compare commits

..

2 commits

Author SHA1 Message Date
656ec4a534 chore: Release 0.11.0
All checks were successful
Rust / build (push) Successful in 2m25s
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/tag/cron-docker-builder Pipeline was successful
ci/woodpecker/tag/push-next Pipeline was successful
ci/woodpecker/tag/tag-created Pipeline was successful
ci/woodpecker/cron/push-next Pipeline was successful
ci/woodpecker/cron/tag-created Pipeline was successful
ci/woodpecker/cron/cron-docker-builder Pipeline was successful
2024-07-26 19:18:16 +01:00
2ec5ae1d51 tests: restore unlinked test file
All checks were successful
Rust / build (push) Successful in 2m40s
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
2024-07-26 19:18:12 +01:00

View file

@ -16,10 +16,9 @@ impl TryFrom<gix::Url> for RemoteUrl {
} }
impl RemoteUrl { impl RemoteUrl {
pub fn matches(&self, other: &Self) -> bool { pub fn matches(&self, other: &Self) -> bool {
tracing::debug!(host = ?self.host, user = ?self.user, fullname = ?self.fullname, token = ?self.token, "a"); tracing::debug!(host = ?self.host, fullname = ?self.fullname, token = ?self.token, "a");
tracing::debug!(host = ?other.host, user = ?other.user, fullname = ?other.fullname, token = ?other.token,"b"); tracing::debug!(host = ?other.host, fullname = ?other.fullname, token = ?other.token,"b");
self.host.eq(&other.host) self.host.eq(&other.host)
&& self.user.eq(&other.user)
&& self.fullname.eq(&other.fullname) && self.fullname.eq(&other.fullname)
&& self.token.eq(&other.token) && self.token.eq(&other.token)
} }