diff --git a/Cargo.toml b/Cargo.toml index 8bff4fe..bd6db5c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ documentation = "https://docs.rs/embedded-hal-mock" keywords = ["hal", "io", "spi", "i2c", "delay"] license = "MIT OR Apache-2.0" readme = "README.md" -repository = "https://github.com/dbrgn/embedded-hal-mock" +repository = "https://github.com/rust-embedded/embedded-hal-mock" include = [ "**/*.rs", "Cargo.toml", diff --git a/LICENSE-MIT b/LICENSE-MIT index 15eb7c3..ac8a23c 100644 --- a/LICENSE-MIT +++ b/LICENSE-MIT @@ -1,4 +1,4 @@ -Copyright (C) 2018-2024 Danilo Bargen and contributors +Copyright (C) Danilo Bargen and contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/README.md b/README.md index d959be6..2635960 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions. -[github-actions]: https://github.com/dbrgn/embedded-hal-mock/actions/workflows/ci.yml -[github-actions-badge]: https://github.com/dbrgn/embedded-hal-mock/actions/workflows/ci.yml/badge.svg +[github-actions]: https://github.com/rust-embedded/embedded-hal-mock/actions/workflows/ci.yml +[github-actions-badge]: https://github.com/rust-embedded/embedded-hal-mock/actions/workflows/ci.yml/badge.svg [crates-io]: https://crates.io/crates/embedded-hal-mock [version-badge]: https://img.shields.io/crates/v/embedded-hal-mock.svg diff --git a/src/common.rs b/src/common.rs index c66aafc..402cc5c 100644 --- a/src/common.rs +++ b/src/common.rs @@ -147,7 +147,7 @@ impl Drop for DoneCallDetector { if !self.called && !thread::panicking() { let msg = "WARNING: A mock (from embedded-hal-mock) was dropped \ without calling the `.done()` method. \ - See https://github.com/dbrgn/embedded-hal-mock/issues/34 \ + See https://github.com/rust-embedded/embedded-hal-mock/issues/34 \ for more details."; // Note: We cannot use the print macros here, since they get @@ -193,7 +193,7 @@ mod tests { #[test] #[should_panic( - expected = "WARNING: A mock (from embedded-hal-mock) was dropped without calling the `.done()` method. See https://github.com/dbrgn/embedded-hal-mock/issues/34 for more details." + expected = "WARNING: A mock (from embedded-hal-mock) was dropped without calling the `.done()` method. See https://github.com/rust-embedded/embedded-hal-mock/issues/34 for more details." )] fn panic_if_drop_not_called() { let expectations = [0u8, 1u8];