From e40da9bd0327af8c82a0f93aa0df381e7703e25d Mon Sep 17 00:00:00 2001 From: Ralph Ursprung Date: Wed, 17 Jan 2024 13:26:34 +0100 Subject: [PATCH] update repo URL (moved to rust-embedded-community) the repository has found a new home in the [rust-embedded-community]! this will reduce the bus factor in the future. as the repo has been moved all issues, PRs, etc. have been kept, ensuring that they can be found again in the future. [rust-embedded-community]: https://github.com/rust-embedded-community --- CHANGELOG.md | 4 ++-- Cargo.toml | 2 +- README.md | 4 ++-- release.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 748e799..c4d0a83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,5 +18,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 If your HAL does not yet implement this, then please use the previous release of the library. -[Unreleased]: https://github.com/rursprung/tb6612fng-rs/compare/v0.2.0...HEAD -[0.2.0]: https://github.com/rursprung/tb6612fng-rs/compare/v0.1.1...v0.2.0 +[Unreleased]: https://github.com/rust-embedded-community/tb6612fng-rs/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/rust-embedded-community/tb6612fng-rs/compare/v0.1.1...v0.2.0 diff --git a/Cargo.toml b/Cargo.toml index 54baa39..40f480c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" rust-version = "1.63" description = "A `no_std` driver for the TB6612FNG motor driver." -repository = "https://github.com/rursprung/tb6612fng-rs" +repository = "https://github.com/rust-embedded-community/tb6612fng-rs" categories = ["embedded", "hardware-support", "no-std", "no-std::no-alloc"] keywords = ["tb6612fng", "driver", "motor", "controller", "embedded-hal-driver"] license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index be1a713..24b0b2d 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Rust Driver for TB6612FNG Motor Driver -[![CI](https://github.com/rursprung/tb6612fng-rs/actions/workflows/CI.yml/badge.svg)](https://github.com/rursprung/tb6612fng-rs/actions/workflows/CI.yml) +[![CI](https://github.com/rust-embedded-community/tb6612fng-rs/actions/workflows/CI.yml/badge.svg)](https://github.com/rust-embedded-community/tb6612fng-rs/actions/workflows/CI.yml) [![Crates.io](https://img.shields.io/crates/v/tb6612fng)](https://crates.io/crates/tb6612fng) ![Licenses](https://img.shields.io/crates/l/tb6612fng) [![unsafe forbidden](https://img.shields.io/badge/unsafe-forbidden-success.svg)](https://github.com/rust-secure-code/safety-dance/) @@ -33,7 +33,7 @@ For the changelog please see the dedicated [CHANGELOG.md](CHANGELOG.md). This crate is already stable, however it's based on a release candidate version of [`embedded-hal`](https://github.com/rust-embedded/embedded-hal/), making the API unstable (the change from 1.0.0-rc.1 to 1.0.0 of e-h will be breaking from a dependency management point of view). -See [the tracking issue](https://github.com/rursprung/tb6612fng-rs/issues/4) for the roadmap to v1.0.0. +See [the tracking issue](https://github.com/rust-embedded-community/tb6612fng-rs/issues/4) for the roadmap to v1.0.0. ## Minimum Supported Rust Version (MSRV) This crate is guaranteed to compile on stable Rust 1.62 and up. It *might* diff --git a/release.toml b/release.toml index 24eb0ec..5bd2c66 100644 --- a/release.toml +++ b/release.toml @@ -3,5 +3,5 @@ pre-release-replacements = [ {file="CHANGELOG.md", search="\\.\\.\\.HEAD", replace="...{{tag_name}}", exactly=1}, {file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}", min=1}, {file="CHANGELOG.md", search="", replace="\n## [Unreleased] - ReleaseDate\n", exactly=1}, - {file="CHANGELOG.md", search="", replace="\n[Unreleased]: https://github.com/rursprung/tb6612fng-rs/compare/{{tag_name}}...HEAD", exactly=1}, + {file="CHANGELOG.md", search="", replace="\n[Unreleased]: https://github.com/rust-embedded-community/tb6612fng-rs/compare/{{tag_name}}...HEAD", exactly=1}, ]