Skip to content

Commit 9c4b2c4

Browse files
committed
Rename master branch to main
1 parent 04a9b2d commit 9c4b2c4

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Specialized .NET Stream classes
33

44
[![NuGet package](https://img.shields.io/nuget/v/Nerdbank.Streams.svg)](https://nuget.org/packages/Nerdbank.Streams)
55
[![Build Status](https://dev.azure.com/andrewarnott/OSS/_apis/build/status/Nerdbank.Streams)](https://dev.azure.com/andrewarnott/OSS/_build/latest?definitionId=14)
6-
[![codecov](https://codecov.io/gh/AArnott/Nerdbank.Streams/branch/master/graph/badge.svg)](https://codecov.io/gh/AArnott/Nerdbank.Streams)
6+
[![codecov](https://codecov.io/gh/AArnott/Nerdbank.Streams/branch/main/graph/badge.svg)](https://codecov.io/gh/AArnott/Nerdbank.Streams)
77

88
*Enhanced streams for communication in-proc or across the Internet.*
99

@@ -44,5 +44,4 @@ Specialized .NET Stream classes
4444
read directly from any `ReadOnlySequence<byte>`, making it more reusable than `StreamReader`
4545
and thus allows for alloc-free reading across many sequences.
4646
1. [`DuplexPipe`](doc/DuplexPipe.md) is a trivial implementation of `IDuplexPipe`.
47-
1. [`Stream.ReadBlockAsync`](doc/ReadBlockAsync.md) reads
48-
47+
1. [`Stream.ReadBlockAsync`](doc/ReadBlockAsync.md) reads

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
trigger:
22
branches:
33
include:
4-
- master
4+
- main
55
- 'v2.*'
66
- 'validate/*'
77
paths:

src/nerdbank-streams/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919

2020
See our [project README][GitHubREADME] for more information.
2121

22-
[GitHubREADME]: https://github.com/AArnott/Nerdbank.Streams/blob/master/README.md
22+
[GitHubREADME]: https://github.com/AArnott/Nerdbank.Streams/blob/main/README.md

version.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
33
"version": "2.7-alpha",
44
"publicReleaseRefSpec": [
5-
"^refs/heads/master$",
5+
"^refs/heads/main$",
66
"^refs/heads/v\\d+(?:.\\d+)?$",
77
"^refs/heads/fullduplexstream$"
88
]
9-
}
9+
}

0 commit comments

Comments
 (0)