From 5ff56bddf04251c8d57439ef24dfa9e629415b58 Mon Sep 17 00:00:00 2001 From: lwshang Date: Fri, 5 Apr 2019 16:46:53 -0400 Subject: [PATCH 1/2] Fix Travis CI badge url --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5aac5db..60bde95 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # pkg-config-rs -[![Build Status](https://travis-ci.com/alexcrichton/pkg-config-rs.svg?branch=master)](https://travis-ci.com/alexcrichton/pkg-config-rs) +[![Build Status](https://travis-ci.com/rust-lang/pkg-config-rs.svg?branch=master)](https://travis-ci.com/rust-lang/pkg-config-rs) [![Rust](https://img.shields.io/badge/rust-1.28%2B-blue.svg?maxAge=3600)](https://github.com/alexcrichton/pkg-config-rs/) [Documentation](https://docs.rs/pkg-config) From 7c6c9e2cbbff42d565b72c74709adab8e47e12f4 Mon Sep 17 00:00:00 2001 From: lwshang Date: Mon, 8 Apr 2019 10:03:08 -0400 Subject: [PATCH 2/2] Correct url in Cargo.toml --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6f06af5..e4d7ce3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ name = "pkg-config" version = "0.3.14" authors = ["Alex Crichton "] license = "MIT/Apache-2.0" -repository = "https://github.com/alexcrichton/pkg-config-rs" +repository = "https://github.com/rust-lang/pkg-config-rs" documentation = "https://docs.rs/pkg-config" description = """ A library to run the pkg-config system tool at build time in order to be used in @@ -13,7 +13,7 @@ Cargo build scripts. keywords = ["build-dependencies"] [badges] -travis-ci = { repository = "alexcrichton/pkg-config-rs" } +travis-ci = { repository = "rust-lang/pkg-config-rs" } [dev-dependencies] lazy_static = "1"