Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Guides/JSON-Interop.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ extension ExtendedJSONDecoder: ContentDecoder {
```

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

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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Note that `BSONDocument` conforms to `Collection`, so useful methods from [`Sequ

## Development Instructions

See our [development guide](https://github.com/mongodb/mongo-swift-driver/blob/master/Guides/Development.md) for the MongoDB driver to get started.
See our [development guide](https://github.com/mongodb/mongo-swift-driver/blob/main/Guides/Development.md) for the MongoDB driver to get started.
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).

## Note
Expand Down
2 changes: 1 addition & 1 deletion etc/docs-main.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

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

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

Expand Down
4 changes: 2 additions & 2 deletions etc/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
# exit if any command fails
set -e

# ensure we are on master before releasing
git checkout master
# ensure we are on main before releasing
git checkout main

version=${1}
# Ensure version is non-empty
Expand Down