Skip to content

Commit

Permalink
Merge pull request #109 from petabridge/dev
Browse files Browse the repository at this point in the history
v0.2.2 Release
  • Loading branch information
Aaronontheweb authored Feb 14, 2020
2 parents 8437e5b + 70175f7 commit 13721f6
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 14 deletions.
7 changes: 4 additions & 3 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#### 0.2.1 November 18 2019 ####
Maintenance release: Incrementalist v0.2.1
#### 0.2.2 February 14 2020 ####
Maintenance release: Incrementalist v0.2.2

* [Fixed: NRE during Incrementalist.ProjectSystem.Cmds.FilterAffectedProjectFilesCmd](https://github.com/petabridge/Incrementalist/issues/70)
* Updated Roslyn version to 3.4.0
* Updated Libgit2Sharp version to 0.26.2
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Param(

$FakeVersion = "4.61.2"
$DotNetChannel = "LTS";
$DotNetVersion = "3.0.100";
$DotNetVersion = "3.1.100";
$DotNetInstallerUri = "https://dot.net/v1/dotnet-install.ps1";
$NugetVersion = "4.1.0";
$NugetUrl = "https://dist.nuget.org/win-x86-commandline/v$NugetVersion/nuget.exe"
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ NUGET_EXE=$TOOLS_DIR/nuget.exe
NUGET_URL=https://dist.nuget.org/win-x86-commandline/v4.0.0/nuget.exe
FAKE_VERSION=4.61.2
FAKE_EXE=$TOOLS_DIR/FAKE/tools/FAKE.exe
DOTNET_VERSION=3.0.100
DOTNET_VERSION=3.1.100
DOTNET_INSTALLER_URL=https://dot.net/v1/dotnet-install.sh
DOTNET_CHANNEL=LTS;
DOCFX_VERSION=2.40.5
Expand Down
2 changes: 1 addition & 1 deletion src/Incrementalist.Cmd/Incrementalist.Cmd.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.6.0" />
<PackageReference Include="CommandLineParser" Version="2.7.82" />
<PackageReference Include="Microsoft.Build.Locator" Version="1.2.6" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="$(RoslynVersion)" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.2.0" />
Expand Down
2 changes: 1 addition & 1 deletion src/Incrementalist.Tests/Incrementalist.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="5.9.0" />
<PackageReference Include="FluentAssertions" Version="5.10.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(TestSdkVersion)" />
<PackageReference Include="xunit" Version="$(XunitVersion)" />
<PackageReference Include="xunit.runner.visualstudio" Version="$(XunitVersion)" />
Expand Down
4 changes: 2 additions & 2 deletions src/Incrementalist/Incrementalist.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@


<ItemGroup>
<PackageReference Include="Libgit2Sharp" Version="0.26.1" />
<PackageReference Include="Libgit2Sharp" Version="0.26.2" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="$(RoslynVersion)" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="3.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="3.1.1" />
</ItemGroup>

</Project>
11 changes: 6 additions & 5 deletions src/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
<PropertyGroup>
<Copyright>Copyright © 2015-2019 Petabridge</Copyright>
<Authors>Petabridge</Authors>
<VersionPrefix>0.2.1</VersionPrefix>
<PackageReleaseNotes>Maintenance release: Incrementalist v0.2.1
[Fixed: NRE during Incrementalist.ProjectSystem.Cmds.FilterAffectedProjectFilesCmd](https://github.com/petabridge/Incrementalist/issues/70)</PackageReleaseNotes>
<VersionPrefix>0.2.2</VersionPrefix>
<PackageReleaseNotes>Maintenance release: Incrementalist v0.2.2
Updated Roslyn version to 3.4.0
Updated Libgit2Sharp version to 0.26.2</PackageReleaseNotes>
<tags>build, msbuild, incremental build, roslyn, git</tags>
<PackageIconUrl>
https://petabridge.com/images/logo.png
Expand Down Expand Up @@ -221,7 +222,7 @@
<PropertyGroup>
<NBenchVersion>1.2.2</NBenchVersion>
<XunitVersion>2.4.1</XunitVersion>
<TestSdkVersion>16.4.0</TestSdkVersion>
<RoslynVersion>3.3.1</RoslynVersion>
<TestSdkVersion>16.5.0</TestSdkVersion>
<RoslynVersion>3.4.0</RoslynVersion>
</PropertyGroup>
</Project>

0 comments on commit 13721f6

Please sign in to comment.