Skip to content

Commit

Permalink
added v0.2.1 release notes (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaronontheweb authored Apr 9, 2022
1 parent 74e764c commit ce4423c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
## [0.2.0] / 09 April 2022
- [Bugfix: Fixed issues with duplicate `IServiceProvider` registration](https://github.com/akkadotnet/Akka.Hosting/pull/32), this could cause multiple instances of dependencies to be instantiated since Akka.Hosting creating multiple `IServiceProvider` instances during the construction process. This has been resolved.
## [0.2.1] / 09 April 2022
- Bugfix: when using Akka.Remote or Akka.Cluster, don't override any custom `ProviderSelection`s provided by the user.
1 change: 1 addition & 0 deletions src/Akka.Cluster.Hosting/AkkaClusterHostingExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ public static AkkaConfigurationBuilder WithClustering(this AkkaConfigurationBuil
switch (builder.ActorRefProvider.Value)
{
case ProviderSelection.Cluster _:
case ProviderSelection.Custom _:
return hoconBuilder; // no-op
}
}
Expand Down
1 change: 1 addition & 0 deletions src/Akka.Remote.Hosting/AkkaRemoteHostingExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public static AkkaConfigurationBuilder WithRemoting(this AkkaConfigurationBuilde
{
case ProviderSelection.Cluster _:
case ProviderSelection.Remote _:
case ProviderSelection.Custom _:
return hoconBuilder; // no-op
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<PropertyGroup>
<Copyright>Copyright © 2013-2022 Akka.NET Team</Copyright>
<Authors>Akka.NET Team</Authors>
<VersionPrefix>0.2.0</VersionPrefix>
<PackageReleaseNotes>• [Bugfix: Fixed issues with duplicate IServiceProvider registration](https://github.com/akkadotnet/Akka.Hosting/pull/32)%2C this could cause multiple instances of dependencies to be instantiated since Akka.Hosting creating multiple IServiceProvider instances during the construction process. This has been resolved.</PackageReleaseNotes>
<VersionPrefix>0.2.1</VersionPrefix>
<PackageReleaseNotes>• Bugfix: when using Akka.Remote or Akka.Cluster%2C don't override any custom ProviderSelections provided by the user.</PackageReleaseNotes>
<PackageIconUrl>
</PackageIconUrl>
<PackageProjectUrl>
Expand Down

0 comments on commit ce4423c

Please sign in to comment.