Skip to content

Commit

Permalink
Release prep
Browse files Browse the repository at this point in the history
  • Loading branch information
daveaglick committed May 17, 2021
1 parent 3576ae4 commit 297dd61
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

<PropertyGroup>
<!-- The NuGet version of Statiq.Web and Statiq.Framework (for the CodeAnalysis extension) that should be referenced, or empty to use local references -->
<StatiqWebVersion>1.0.0-beta.28</StatiqWebVersion>
<StatiqFrameworkVersion>1.0.0-beta.42</StatiqFrameworkVersion>
<StatiqWebVersion>1.0.0-beta.29</StatiqWebVersion>
<StatiqFrameworkVersion>1.0.0-beta.43</StatiqFrameworkVersion>
<StatiqWebRoot>..\..\..\Statiq.Web</StatiqWebRoot>
<StatiqFrameworkRoot>..\..\..\Statiq.Framework</StatiqFrameworkRoot>
</PropertyGroup>

<PropertyGroup>
<Version>1.0.0-alpha.3</Version>
<Version>1.0.0-alpha.4</Version>
<InformationalVersion>$(Version)</InformationalVersion>
<AssemblyVersion>$(Version.Split('-')[0])</AssemblyVersion>
<FileVersion>$(Version.Split('-')[0])</FileVersion>
Expand Down
8 changes: 8 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# 1.0.0-alpha.4

- Updated Statiq Web to version [1.0.0-beta.29](https://github.com/statiqdev/Statiq.Web/releases/tag/v1.0.0-beta.29).
- Updated Statiq Framework to version [1.0.0-beta.43](https://github.com/statiqdev/Statiq.Framework/releases/tag/v1.0.0-beta.43).

# 1.0.0-alpha.3

- Updated Statiq Web to version [1.0.0-beta.29](https://github.com/statiqdev/Statiq.Web/releases/tag/v1.0.0-beta.29).
- Updated Statiq Framework to version [1.0.0-beta.43](https://github.com/statiqdev/Statiq.Framework/releases/tag/v1.0.0-beta.43).

# 1.0.0-alpha.2

- Ensures the Api pipeline is a dependency of the Statiq Web Inputs pipeline.
Expand Down
6 changes: 5 additions & 1 deletion build/Statiq.Docs.Build/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ public static async Task<int> Main(string[] args) => await Bootstrapper
x.FileSystem.InputPaths.Clear();
x.FileSystem.InputPaths.Add(x.FileSystem.RootPath);
})
.ConfigureSettings(settings => settings.Add(BuildServer, settings.ContainsAnyKeys("GITHUB_ACTIONS", "TF_BUILD")))
.ConfigureSettings(settings =>
{
settings.Add(BuildServer, settings.ContainsAnyKeys("GITHUB_ACTIONS", "TF_BUILD"));
settings[Keys.CleanMode] = CleanMode.Full;
})
.AddPipelines<Program>()
.RunAsync();

Expand Down
8 changes: 5 additions & 3 deletions build/Statiq.Docs.Build/Statiq.Docs.Build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,16 @@
</PropertyGroup>

<Choose>
<When Condition=" '$(StatiqWebVersion)' == ''">
<When Condition=" '$(StatiqFrameworkVersion)' == ''">
<ItemGroup>
<ProjectReference Include="$(StatiqWebRoot)\src\Statiq.Web\Statiq.Web.csproj" />
<ProjectReference Include="$(StatiqFrameworkRoot)\src\core\Statiq.App\Statiq.App.csproj" />
<ProjectReference Include="$(StatiqFrameworkRoot)\src\core\Statiq.Common\Statiq.Common.csproj" />
<ProjectReference Include="$(StatiqFrameworkRoot)\src\core\Statiq.Core\Statiq.Core.csproj" />
</ItemGroup>
</When>
<Otherwise>
<ItemGroup>
<PackageReference Include="Statiq.Web" Version="$(StatiqWebVersion)" />
<PackageReference Include="Statiq.App" Version="$(StatiqFrameworkVersion)" />
</ItemGroup>
</Otherwise>
</Choose>
Expand Down

0 comments on commit 297dd61

Please sign in to comment.