From 606880a0589fb0ea1f1c477d169819fe92fbaf04 Mon Sep 17 00:00:00 2001 From: Udip Pant Date: Fri, 17 Sep 2021 11:32:31 -0700 Subject: [PATCH] remove reference to 'master' branch in quic Summary: https://github.com/facebookincubator/mvfst/issues/219 Reviewed By: kvtsoy Differential Revision: D31022876 fbshipit-source-id: 6dc4e76136d5a2e43f3daf8dd708b2cf3e688e54 --- CONTRIBUTING.md | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c13b3cfff..878db45ee 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -12,7 +12,7 @@ requests are cherry-picked into our repo and then pushed back out. ## Pull Requests We actively welcome your pull requests. -1. Fork the repo and create your branch from `master`. +1. Fork the repo and create your branch from `main`. 1. If you've added code that should be tested, add tests 1. If you've changed APIs, update the documentation. 1. Ensure the test suite passes. diff --git a/README.md b/README.md index 7d85f3047..1fe520601 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ ![alt text](logo.png "MVFST") -[![Linux Build Status](https://github.com/facebookincubator/mvfst/workflows/linux/badge.svg?branch=master)](https://github.com/facebookincubator/mvfst/actions?workflow=linux) -[![macOS Build Status](https://github.com/facebookincubator/mvfst/workflows/mac/badge.svg?branch=master)](https://github.com/facebookincubator/mvfst/actions?workflow=mac) -[![Windows Build Status](https://github.com/facebookincubator/mvfst/workflows/windows/badge.svg?branch=master)](https://github.com/facebookincubator/mvfst/actions?workflow=windows) +[![Linux Build Status](https://github.com/facebookincubator/mvfst/workflows/linux/badge.svg)](https://github.com/facebookincubator/mvfst/actions?workflow=linux) +[![macOS Build Status](https://github.com/facebookincubator/mvfst/workflows/mac/badge.svg)](https://github.com/facebookincubator/mvfst/actions?workflow=mac) +[![Windows Build Status](https://github.com/facebookincubator/mvfst/workflows/windows/badge.svg)](https://github.com/facebookincubator/mvfst/actions?workflow=windows) ## Introduction `mvfst` (Pronounced *move fast*) is a client and server implementation of [IETF QUIC](https://quicwg.org/) protocol in C++ by Facebook. QUIC is a UDP based reliable, multiplexed transport protocol that will become an internet standard. The goal of `mvfst` is to build a performant implementation of the QUIC transport protocol that applications could adapt for use cases on both the internet and the data-center. `mvfst` has been tested at scale on android, iOS apps, as well as servers and has several features to support large scale deployments.