Skip to content

Commit

Permalink
0.5.3 Release
Browse files Browse the repository at this point in the history
0.5.3 Release
  • Loading branch information
Arkatufus authored Sep 10, 2021
2 parents 10716b3 + b834237 commit 6a2e314
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 10 deletions.
31 changes: 31 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
version: 2
updates:
- package-ecosystem: nuget
directory: "/"
schedule:
interval: daily
time: "11:00"
open-pull-requests-limit: 10
ignore:
- dependency-name: FsCheck.Xunit
versions:
- 2.14.4
- 2.14.5
- 2.14.6
- 2.15.0
- 2.15.1
- dependency-name: Akka.Persistence.Sqlite
versions:
- 1.4.16
- 1.4.17
- dependency-name: Akka.TestKit.Xunit2
versions:
- 1.4.16
- 1.4.17
- dependency-name: Akka.Persistence
versions:
- 1.4.16
- 1.4.17
- dependency-name: Microsoft.NET.Test.Sdk
versions:
- 16.9.1
8 changes: 6 additions & 2 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
#### 0.5.1 November 11 2020 ####
* Updated Akka.NET to v1.4.12
#### 0.5.3 September 10 2021 ####
* Upgraded to [Akka.NET 1.4.25](https://github.com/akkadotnet/akka.net/releases/tag/1.4.25)
* [Update FSharp.Core to 5.0.2](https://github.com/petabridge/Akka.Persistence.Extras/pull/138)

#### 0.5.2 November 23 2020 ####
* [Logging PersistentSupervisor child restart failure as error](https://github.com/petabridge/Akka.Persistence.Extras/issues/114)
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ if (Get-Command signclient -ErrorAction SilentlyContinue) {
else{
$SignClientFolder = Join-Path $ToolPath "signclient"
Write-Host "SignClient not found. Installing to ... $SignClientFolder"
dotnet tool install SignClient --version 1.0.82 --tool-path "$SignClientFolder"
dotnet tool install SignClient --version 1.2.109 --tool-path "$SignClientFolder"
}

###########################################################################
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ fi
# INSTALL SignTool
###########################################################################
if [ ! -f "$SIGNTOOL_EXE" ]; then
"$SCRIPT_DIR/.dotnet/dotnet" tool install SignClient --version 1.0.82 --tool-path "$SIGNCLIENT_DIR"
"$SCRIPT_DIR/.dotnet/dotnet" tool install SignClient --version 1.2.109 --tool-path "$SIGNCLIENT_DIR"
if [ $? -ne 0 ]; then
echo "SignClient already installed."
fi
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="5.10.2" />
<PackageReference Include="FsCheck.Xunit" Version="2.14.1" />
<PackageReference Include="FSharp.Core" Version="5.0.0" />
<PackageReference Include="FluentAssertions" Version="6.1.0" />
<PackageReference Include="FsCheck.Xunit" Version="2.16.3" />
<PackageReference Include="FSharp.Core" Version="5.0.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(TestSdkVersion)" />
<PackageReference Include="xunit" Version="$(XunitVersion)" />
<PackageReference Include="xunit.runner.visualstudio" Version="$(XunitVersion)" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ private bool OnTerminated(object message)
}
else
{
Log.Debug(
Log.Error(
$"Terminating on restart #{nextRestartCount} which exceeds max allowed restarts ({maxNrOfRetries})");
Context.Stop(Self);
}
Expand Down
4 changes: 2 additions & 2 deletions src/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
<NoWarn>$(NoWarn);CS1591</NoWarn>
</PropertyGroup>
<PropertyGroup>
<TestSdkVersion>16.8.0</TestSdkVersion>
<AkkaVersion>1.4.12</AkkaVersion>
<TestSdkVersion>16.11.0</TestSdkVersion>
<AkkaVersion>1.4.25</AkkaVersion>
<NBenchVersion>2.0.1</NBenchVersion>
<XunitVersion>2.4.1</XunitVersion>
<NetCoreTestVersion>netcoreapp3.1</NetCoreTestVersion>
Expand Down

0 comments on commit 6a2e314

Please sign in to comment.