Skip to content

Commit 94df590

Browse files
authored
Fix main branch references (#598)
+semver:patch
1 parent 57f4be9 commit 94df590

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
![FluentNHibernate logo](https://raw.githubusercontent.com/jagregory/fluent-nhibernate/master/docs/logo.png)
1+
![FluentNHibernate logo](https://raw.githubusercontent.com/nhibernate/fluent-nhibernate/main/docs/logo.png)
22

3-
[![Build status](https://ci.appveyor.com/api/projects/status/684r2ot07i2lrcij/branch/master?svg=true)](https://ci.appveyor.com/project/nhibernate/fluent-nhibernate/branch/master)
3+
[![Build status](https://ci.appveyor.com/api/projects/status/684r2ot07i2lrcij/branch/main?svg=true)](https://ci.appveyor.com/project/nhibernate/fluent-nhibernate/branch/main)
44
[![NuGet](https://img.shields.io/nuget/v/FluentNHibernate.svg)](https://www.nuget.org/packages/FluentNHibernate)
55

66
## What is FluentNHibernate?
@@ -37,5 +37,5 @@ Fluent NHibernate wouldn't be possible without the time and effort of its contri
3737

3838
Thanks goes to [Jeremy Miller](http://codebetter.com/blogs/jeremy.miller) for the original idea and implementation.
3939

40-
Fluent NHibernate is © 2008-2018 [James Gregory](http://jagregory.com) and contributors under the [BSD license](https://github.com/FluentNHibernate/fluent-nhibernate/blob/master/LICENSE)
40+
Fluent NHibernate is © 2008-2018 [James Gregory](http://jagregory.com) and contributors under the [BSD license](https://github.com/nhibernate/fluent-nhibernate/blob/main/LICENSE)
4141

build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ Task("Create-Release-Notes")
199199
Milestone = parameters.Version.Milestone,
200200
Name = parameters.Version.Milestone,
201201
Prerelease = true,
202-
TargetCommitish = "master"
202+
TargetCommitish = "main"
203203
}
204204
);
205205
});

build/parameters.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public class BuildParameters
5353
IsRunningOnAppVeyor = buildSystem.AppVeyor.IsRunningOnAppVeyor,
5454
IsPullRequest = buildSystem.AppVeyor.Environment.PullRequest.IsPullRequest,
5555
IsMainRepo = StringComparer.OrdinalIgnoreCase.Equals("nhibernate/fluent-nhibernate", buildSystem.AppVeyor.Environment.Repository.Name),
56-
IsMainBranch = StringComparer.OrdinalIgnoreCase.Equals("master", buildSystem.AppVeyor.Environment.Repository.Branch),
56+
IsMainBranch = StringComparer.OrdinalIgnoreCase.Equals("main", buildSystem.AppVeyor.Environment.Repository.Branch),
5757
IsTagged = IsBuildTagged(buildSystem),
5858
GitHub = BuildGitHub.GetWithCredentials(context, "nhibernate", "fluent-nhibernate"),
5959
NuGet = BuildNuGet.GetWithCredentials(context),

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Company>NHibernate.info</Company>
77
<PackageDescription>Fluent, XML-less, compile safe, automated, convention-based mappings for NHibernate.</PackageDescription>
88
<PackageLicenseFile>LICENSE</PackageLicenseFile>
9-
<PackageIconUrl>https://raw.githubusercontent.com/nhibernate/fluent-nhibernate/master/docs/logo-nuget.png</PackageIconUrl>
9+
<PackageIconUrl>https://raw.githubusercontent.com/nhibernate/fluent-nhibernate/main/docs/logo-nuget.png</PackageIconUrl>
1010
<PackageIcon>logo-nuget.png</PackageIcon>
1111
<PackageProjectUrl>https://github.com/nhibernate/fluent-nhibernate</PackageProjectUrl>
1212
<PackageTags>ORM;DAL;NHibernate;Fluent;Conventions;DataBase;ADO.Net;Mappings</PackageTags>

0 commit comments

Comments
 (0)