From 06b1c17051ca6addc59a71fd7d6a27bbc2761c95 Mon Sep 17 00:00:00 2001 From: Sean McGrail Date: Fri, 12 Mar 2021 13:05:26 -0800 Subject: [PATCH] Rename master branch to main (#3820) --- .travis.yml | 2 +- CONTRIBUTING.md | 4 ++-- README.md | 4 ++-- example/service/dynamodb/unitTest/README.md | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 073a166baf2..08cf10535bc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -74,4 +74,4 @@ script: branches: only: - - master + - main diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 824ac424431..96e3246edd2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -17,7 +17,7 @@ Jump To: *Before you send us a pull request, please be sure that:* -1. You're working from the latest source on the master branch. +1. You're working from the latest source on the main branch. 2. You check existing open, and recently closed, pull requests to be sure that someone else hasn't already addressed the problem. 3. You create an issue before working on a contribution that will take a @@ -26,7 +26,7 @@ Jump To: *Creating a Pull Request* 1. Fork the repository. -2. In your fork, make your change in a branch that's based on this repo's master branch. +2. In your fork, make your change in a branch that's based on this repo's main branch. 3. Commit the change to your fork, using a clear and descriptive commit message. 4. Create a pull request, answering any questions in the pull request form. diff --git a/README.md b/README.md index aadd57be59b..87de4db40f3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # AWS SDK for Go -[![API Reference](https://img.shields.io/badge/api-reference-blue.svg)](https://docs.aws.amazon.com/sdk-for-go/api) [![Join the chat at https://gitter.im/aws/aws-sdk-go](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/aws/aws-sdk-go?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Build Status](https://api.travis-ci.com/aws/aws-sdk-go.svg?branch=master)](https://travis-ci.com/aws/aws-sdk-go) [![Apache V2 License](https://img.shields.io/badge/license-Apache%20V2-blue.svg)](https://github.com/aws/aws-sdk-go/blob/master/LICENSE.txt) +[![API Reference](https://img.shields.io/badge/api-reference-blue.svg)](https://docs.aws.amazon.com/sdk-for-go/api) [![Join the chat at https://gitter.im/aws/aws-sdk-go](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/aws/aws-sdk-go?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Build Status](https://api.travis-ci.com/aws/aws-sdk-go.svg?branch=main)](https://travis-ci.com/aws/aws-sdk-go) [![Apache V2 License](https://img.shields.io/badge/license-Apache%20V2-blue.svg)](https://github.com/aws/aws-sdk-go/blob/main/LICENSE.txt) aws-sdk-go is the official AWS SDK for the Go programming language. @@ -511,7 +511,7 @@ great for getting started with a service, or when looking for more information about a service. While this document is not required for coding, services may supply helpful samples to look out for. -[SDK Examples](https://github.com/aws/aws-sdk-go/tree/master/example) - +[SDK Examples](https://github.com/aws/aws-sdk-go/tree/main/example) - Included in the SDK's repo are several hand crafted examples using the SDK features and AWS services. diff --git a/example/service/dynamodb/unitTest/README.md b/example/service/dynamodb/unitTest/README.md index 3c6005117c6..7152dcb1799 100644 --- a/example/service/dynamodb/unitTest/README.md +++ b/example/service/dynamodb/unitTest/README.md @@ -30,7 +30,7 @@ getter.DynamoDB.GetItem(/* ... */) ## Querying in tests Construct a `fakeDynamoDB` and add the necessary methods for each of those structs (custom ones for `ItemGetter` and [whatever methods you're using for -DynamoDB](https://github.com/aws/aws-sdk-go/blob/master/service/dynamodb/dynamodbiface/interface.go)), +DynamoDB](https://github.com/aws/aws-sdk-go/blob/main/service/dynamodb/dynamodbiface/interface.go)), and you're good to go! ```go