Skip to content

Commit e2b2dc0

Browse files
authored
SWIFT-992 Update references to master branch (#60)
1 parent 6aeef24 commit e2b2dc0

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Guides/JSON-Interop.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ extension ExtendedJSONDecoder: ContentDecoder {
115115
```
116116

117117
To see some example Vapor apps using the driver, check out
118-
[Examples/VaporExample](https://github.com/mongodb/mongo-swift-driver/tree/master/Examples/VaporExample) or
119-
[Examples/ComplexVaporExample](https://github.com/mongodb/mongo-swift-driver/tree/master/Examples/ComplexVaporExample).
118+
[Examples/VaporExample](https://github.com/mongodb/mongo-swift-driver/tree/main/Examples/VaporExample) or
119+
[Examples/ComplexVaporExample](https://github.com/mongodb/mongo-swift-driver/tree/main/Examples/ComplexVaporExample).
120120

121121
## Using `JSONEncoder` and `JSONDecoder` with BSON Types
122122

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Note that `BSONDocument` conforms to `Collection`, so useful methods from [`Sequ
8686

8787
## Development Instructions
8888

89-
See our [development guide](https://github.com/mongodb/mongo-swift-driver/blob/master/Guides/Development.md) for the MongoDB driver to get started.
89+
See our [development guide](https://github.com/mongodb/mongo-swift-driver/blob/main/Guides/Development.md) for the MongoDB driver to get started.
9090
To run the tests for the BSON library you can make use of the Makefile and run: `make test-pretty` (uses `xcpretty` to change the output format) or just `make test` (for environments without ruby).
9191

9292
## Note

etc/docs-main.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This is the documentation for the official MongoDB Swift BSON library, [swift-bson](https://github.com/mongodb/swift-bson).
44

5-
You can view the README for this project, including installation instructions, [here](https://github.com/mongodb/swift-bson/blob/master/README.md).
5+
You can view the README for this project, including installation instructions, [here](https://github.com/mongodb/swift-bson/blob/main/README.md).
66

77
Documentation for other versions of `swift-bson` can be found [here](https://mongodb.github.io/swift-bson/docs).
88

etc/release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# exit if any command fails
66
set -e
77

8-
# ensure we are on master before releasing
9-
git checkout master
8+
# ensure we are on main before releasing
9+
git checkout main
1010

1111
version=${1}
1212
# Ensure version is non-empty

0 commit comments

Comments
 (0)