Skip to content

Commit 85d34f3

Browse files
committed
Move to travis-ci.com
1 parent 5577fa6 commit 85d34f3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
[![Crate Version](https://img.shields.io/crates/v/imap.svg)](https://crates.io/crates/imap)
77
[![Documentation](https://docs.rs/imap/badge.svg)](https://docs.rs/imap/)
88
[![Crate License](https://img.shields.io/crates/l/imap.svg)](https://crates.io/crates/imap)
9-
[![Build Status](https://travis-ci.org/jonhoo/rust-imap.svg)](https://travis-ci.org/jonhoo/rust-imap)
9+
[![Build Status](https://travis-ci.com/jonhoo/rust-imap.svg)](https://travis-ci.com/jonhoo/rust-imap)
1010
[![Coverage Status](https://codecov.io/gh/jonhoo/rust-imap/branch/master/graph/badge.svg)](https://codecov.io/gh/jonhoo/rust-imap)
1111

1212
This crate lets you connect to and interact with servers that implement the IMAP protocol ([RFC
1313
3501](https://tools.ietf.org/html/rfc3501) and various extensions). After authenticating with
1414
the server, IMAP lets you list, fetch, and search for e-mails, as well as monitor mailboxes for
1515
changes. It supports at least the latest three stable Rust releases (possibly even older ones;
16-
check the [CI results](https://travis-ci.org/jonhoo/rust-imap)).
16+
check the [CI results](https://travis-ci.com/jonhoo/rust-imap)).
1717

1818
To connect, use the [`connect`] function. This gives you an unauthenticated [`Client`]. You can
1919
then use [`Client::login`] or [`Client::authenticate`] to perform username/password or

Diff for: README.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Crate Version](https://img.shields.io/crates/v/imap.svg)](https://crates.io/crates/imap)
77
[![Documentation](https://docs.rs/imap/badge.svg)](https://docs.rs/imap/)
88
[![Crate License](https://img.shields.io/crates/l/imap.svg)](https://crates.io/crates/imap)
9-
[![Build Status](https://travis-ci.org/jonhoo/rust-imap.svg)](https://travis-ci.org/jonhoo/rust-imap)
9+
[![Build Status](https://travis-ci.com/jonhoo/rust-imap.svg)](https://travis-ci.com/jonhoo/rust-imap)
1010
[![Coverage Status](https://codecov.io/gh/jonhoo/rust-imap/branch/master/graph/badge.svg)](https://codecov.io/gh/jonhoo/rust-imap)
1111

1212
{{readme}}

Diff for: src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//! 3501](https://tools.ietf.org/html/rfc3501) and various extensions). After authenticating with
33
//! the server, IMAP lets you list, fetch, and search for e-mails, as well as monitor mailboxes for
44
//! changes. It supports at least the latest three stable Rust releases (possibly even older ones;
5-
//! check the [CI results](https://travis-ci.org/jonhoo/rust-imap)).
5+
//! check the [CI results](https://travis-ci.com/jonhoo/rust-imap)).
66
//!
77
//! To connect, use the [`connect`] function. This gives you an unauthenticated [`Client`]. You can
88
//! then use [`Client::login`] or [`Client::authenticate`] to perform username/password or

0 commit comments

Comments
 (0)