Skip to content

Commit 0e359d6

Browse files
authored
chore: Changed the repo's default branch to 'main' (#579)
1 parent eb5b7ff commit 0e359d6

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

AmplifyPlugins/DataStore/AWSDataStoreCategoryPlugin/Sync/InitialSync/InitialSyncOperation.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ final class InitialSyncOperation: AsynchronousOperation {
6666
return nil
6767
}
6868

69-
//TODO: Update to use TimeInterval.milliseconds when it is pushed to master branch
69+
//TODO: Update to use TimeInterval.milliseconds when it is pushed to main branch
7070
// https://github.com/aws-amplify/amplify-ios/issues/398
7171
let lastSyncDate = Date(timeIntervalSince1970: TimeInterval(lastSync) / 1_000)
7272
let secondsSinceLastSync = (lastSyncDate.timeIntervalSinceNow * -1)

AmplifyPlugins/DataStore/AWSDataStoreCategoryPluginIntegrationTests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The following steps demonstrate how to set up DataStore with a conflict resoluti
77

88
1. `amplify init` and choose `iOS` for type of app you are building
99

10-
2. Create the `schema.graphql` file in the same directory and use the schema from [AmplifyTestCommon](https://github.com/aws-amplify/amplify-ios/blob/master/AmplifyTestCommon/Models/schema.graphql)
10+
2. Create the `schema.graphql` file in the same directory and use the schema from [AmplifyTestCommon](https://github.com/aws-amplify/amplify-ios/blob/main/AmplifyTestCommon/Models/schema.graphql)
1111

1212
3. `amplify add api`
1313

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@ All notable changes to this project will be documented in this file. See [standa
44

55
## Unreleased
66

7-
### ⚠ BREAKING CHANGES
8-
* **Tools:** Update Amplify tools script to resolve min CLI version for codegen changes ([#554](https://github.com/aws-amplify/amplify-ios/pull/554))
9-
107
### Bug Fixes
118

129
* **DataStore:** Fixed a DataStore issue where lazy `List<M>` initialization would fail for relationships 3+ levels deep ([#534](https://github.com/aws-amplify/amplify-ios/pull/534))
1310
* **Tools:** Update Amplify tools script to resolve node correctly when NVM is installed ([#524](https://github.com/aws-amplify/amplify-ios/pull/524))
11+
* **Tools:** Update Amplify tools script to resolve min CLI version for codegen changes ([#554](https://github.com/aws-amplify/amplify-ios/pull/554))
12+
13+
### Misc
14+
15+
* Changed the repo's default branch to 'main' ([#579](https://github.com/aws-amplify/amplify-ios/pull/579))
1416

1517
## 1.0.1 (2020-06-05)
1618

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -156,20 +156,20 @@ Create a commit with the proposed change changes:
156156
### Step 6: Pull Request
157157
158158
- Push your changes to your GitHub fork
159-
- Submit a Pull Requests on the aws-sdk-ios repo to the `master` branch and add the Amplify Native team using @aws-amplify/amplify-native so we can approve/provide feedback.
159+
- Submit a Pull Requests on the amplify-ios repo to the `main` branch and add the Amplify Native team using @aws-amplify/amplify-native so we can approve/provide feedback.
160160
- The title of your PR must be descriptive to the specific change.
161161
- No period at the end of the title.
162162
- Pull Request message should indicate which issues are fixed: `fixes #<issue>` or `closes #<issue>`.
163163
- PR messaged should include shout out to collaborators.
164164
- If not obvious (i.e. from unit tests), describe how you verified that your change works.
165165
- If this PR includes breaking changes, they must be listed at the top of the changelog as described above in the Pull Request Checklist.
166166
- Discuss review comments and iterate until you get at least one “Approve”. When iterating, push new commits to the same branch.
167-
- Usually all these are going to be squashed when you merge to master.
167+
- Usually all these are going to be squashed when you merge to main.
168168
- Make sure to update the PR title/description if things change.
169-
- Rebase with master if the master branch has commits ahead of your fork.
169+
- Rebase with the `main` branch if it has commits ahead of your fork.
170170
171171
### Step 7: Merge
172-
Once your PR has been approved and tested, we will merge it into `master` for you and barring any unforeseen circumstances, your changes will be released in our next version. Yay!!
172+
Once your PR has been approved and tested, we will merge it into `main` for you and barring any unforeseen circumstances, your changes will be released in our next version. Yay!!
173173
174174
## Troubleshooting
175175
@@ -206,6 +206,6 @@ If you discover a potential security issue in this project we ask that you notif
206206
207207
## Licensing
208208
209-
See the [LICENSE](https://github.com/aws-amplify/amplify-ios/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
209+
See the [LICENSE](https://github.com/aws-amplify/amplify-ios/blob/main/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
210210
211211
We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.

0 commit comments

Comments
 (0)