Skip to content

Commit

Permalink
Fix main branch references (#598)
Browse files Browse the repository at this point in the history
+semver:patch
  • Loading branch information
hazzik authored Apr 11, 2023
1 parent 57f4be9 commit 94df590
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![FluentNHibernate logo](https://raw.githubusercontent.com/jagregory/fluent-nhibernate/master/docs/logo.png)
![FluentNHibernate logo](https://raw.githubusercontent.com/nhibernate/fluent-nhibernate/main/docs/logo.png)

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

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

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

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)
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)

2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ Task("Create-Release-Notes")
Milestone = parameters.Version.Milestone,
Name = parameters.Version.Milestone,
Prerelease = true,
TargetCommitish = "master"
TargetCommitish = "main"
}
);
});
Expand Down
2 changes: 1 addition & 1 deletion build/parameters.cake
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class BuildParameters
IsRunningOnAppVeyor = buildSystem.AppVeyor.IsRunningOnAppVeyor,
IsPullRequest = buildSystem.AppVeyor.Environment.PullRequest.IsPullRequest,
IsMainRepo = StringComparer.OrdinalIgnoreCase.Equals("nhibernate/fluent-nhibernate", buildSystem.AppVeyor.Environment.Repository.Name),
IsMainBranch = StringComparer.OrdinalIgnoreCase.Equals("master", buildSystem.AppVeyor.Environment.Repository.Branch),
IsMainBranch = StringComparer.OrdinalIgnoreCase.Equals("main", buildSystem.AppVeyor.Environment.Repository.Branch),
IsTagged = IsBuildTagged(buildSystem),
GitHub = BuildGitHub.GetWithCredentials(context, "nhibernate", "fluent-nhibernate"),
NuGet = BuildNuGet.GetWithCredentials(context),
Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Company>NHibernate.info</Company>
<PackageDescription>Fluent, XML-less, compile safe, automated, convention-based mappings for NHibernate.</PackageDescription>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIconUrl>https://raw.githubusercontent.com/nhibernate/fluent-nhibernate/master/docs/logo-nuget.png</PackageIconUrl>
<PackageIconUrl>https://raw.githubusercontent.com/nhibernate/fluent-nhibernate/main/docs/logo-nuget.png</PackageIconUrl>
<PackageIcon>logo-nuget.png</PackageIcon>
<PackageProjectUrl>https://github.com/nhibernate/fluent-nhibernate</PackageProjectUrl>
<PackageTags>ORM;DAL;NHibernate;Fluent;Conventions;DataBase;ADO.Net;Mappings</PackageTags>
Expand Down

0 comments on commit 94df590

Please sign in to comment.