diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 97356f5050a..0b98fc5caa5 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,5 +1,25 @@ -#### 0.7.1 NEXTVERSION -_This is a placeholder for the next released version. Add new stuff that will go into the next version below. It might be 0.7.1 or 0.8. __REMOVE THIS TEXT BEFORE RELEASING!___ +#### 0.7.1 Dec 13 2014 +__Brand New F# API__. The entire F# API has been updated to give it a more native F# feel while still holding true to the Erlang / Scala conventions used in actor systems. [Read more about the F# API changes](https://github.com/akkadotnet/akka.net/pull/526). + +__Multi-Node TestKit (Alpha)__. Not available yet as a NuGet package, but the first pass at the Akka.Remote.TestKit is now available from source, which allow you to test your actor systems running on multiple machines or processes. + +A multi-node test looks like this + + public class InitialHeartbeatMultiNode1 : InitialHeartbeatSpec + { + } + + public class InitialHeartbeatMultiNode2 : InitialHeartbeatSpec + { + } + + public class InitialHeartbeatMultiNode3 : InitialHeartbeatSpec + { + } + + public abstract class InitialHeartbeatSpec : MultiNodeClusterSpec +The MultiNodeTestRunner looks at this, works out that it needs to create 3 processes to run 3 nodes for the test. +It executes NodeTestRunner in each process to do this passing parameters on the command line. [Read more about the multi-node testkit here](https://github.com/akkadotnet/akka.net/pull/497). __Breaking Change to the internal api: The `Next` property on `IAtomicCounter` has been changed into the function `Next()`__ This was done as it had side effects, i.e. the value was increased when the getter was called. This makes it very hard to debug as the debugger kept calling the property and causing the value to be increased. @@ -16,6 +36,9 @@ sut.Tell("Akka", probe); // previously probe.Ref was required probe.ExpectMsg("Hi Akka!"); ``` +__Bugfix for ConsistentHashableEvenlope__. When using `ConsistentHashableEvenlope` in conjunction with `ConsistentHashRouter`s, `ConsistentHashableEvenlope` now correctly extracts its inner message instead of sending the entire `ConsistentHashableEvenlope` directly to the intended routee. + +__Akka.Cluster group routers now work as expected__. New update of Akka.Cluster - group routers now work as expected on cluster deployments. Still working on pool routers. [Read more about Akka.Cluster routers here](https://github.com/akkadotnet/akka.net/pull/489). #### 0.7.0 Oct 16 2014 Major new changes and additions in this release, including some breaking changes... diff --git a/src/SharedAssemblyInfo.cs b/src/SharedAssemblyInfo.cs index c5b32d4cae0..bf0b7b4707f 100644 --- a/src/SharedAssemblyInfo.cs +++ b/src/SharedAssemblyInfo.cs @@ -4,5 +4,5 @@ [assembly: AssemblyCompanyAttribute("Akka.NET Team")] [assembly: AssemblyCopyrightAttribute("Copyright © 2013-2014 Akka.NET Team")] [assembly: AssemblyTrademarkAttribute("")] -[assembly: AssemblyVersionAttribute("0.7.0.0")] -[assembly: AssemblyFileVersionAttribute("0.7.0.0")] +[assembly: AssemblyVersionAttribute("0.7.1.0")] +[assembly: AssemblyFileVersionAttribute("0.7.1.0")] diff --git a/src/contrib/loggers/Akka.Logger.NLog/Akka.Logger.NLog.nuspec b/src/contrib/loggers/Akka.Logger.NLog/Akka.Logger.NLog.nuspec index 212b52723b4..c6b2cfa5af4 100644 --- a/src/contrib/loggers/Akka.Logger.NLog/Akka.Logger.NLog.nuspec +++ b/src/contrib/loggers/Akka.Logger.NLog/Akka.Logger.NLog.nuspec @@ -9,7 +9,7 @@ NLog logging adapter for Akka.NET https://github.com/akkadotnet/akka.net/blob/master/LICENSE https://github.com/akkadotnet/akka.net - https://raw.githubusercontent.com/akkadotnet/akka.net/gh-pages/images/icon.png + https://raw.githubusercontent.com/akkadotnet/akka.net/gh-pages/images/icon-32x32.png false @releaseNotes@ @copyright@ diff --git a/src/contrib/loggers/Akka.Logger.Serilog/Akka.Logger.Serilog.nuspec b/src/contrib/loggers/Akka.Logger.Serilog/Akka.Logger.Serilog.nuspec index 4bce12e911b..1caf3c17194 100644 --- a/src/contrib/loggers/Akka.Logger.Serilog/Akka.Logger.Serilog.nuspec +++ b/src/contrib/loggers/Akka.Logger.Serilog/Akka.Logger.Serilog.nuspec @@ -9,7 +9,7 @@ Serilog logging adapter for Akka.NET https://github.com/akkadotnet/akka.net/blob/master/LICENSE https://github.com/akkadotnet/akka.net - https://raw.githubusercontent.com/akkadotnet/akka.net/gh-pages/images/icon.png + https://raw.githubusercontent.com/akkadotnet/akka.net/gh-pages/images/icon-32x32.png false @releaseNotes@ @copyright@ diff --git a/src/contrib/loggers/Akka.Logger.slf4net/Akka.Logger.slf4net.nuspec b/src/contrib/loggers/Akka.Logger.slf4net/Akka.Logger.slf4net.nuspec index 381005330cc..13ef38fe3fb 100644 --- a/src/contrib/loggers/Akka.Logger.slf4net/Akka.Logger.slf4net.nuspec +++ b/src/contrib/loggers/Akka.Logger.slf4net/Akka.Logger.slf4net.nuspec @@ -9,7 +9,7 @@ slf4net logging adapter for Akka.NET https://github.com/akkadotnet/akka.net/blob/master/LICENSE https://github.com/akkadotnet/akka.net - https://raw.githubusercontent.com/akkadotnet/akka.net/gh-pages/images/icon.png + https://raw.githubusercontent.com/akkadotnet/akka.net/gh-pages/images/icon-32x32.png false @releaseNotes@ @copyright@ diff --git a/src/contrib/testkits/Akka.TestKit.VsTest/Akka.TestKit.VsTest.nuspec b/src/contrib/testkits/Akka.TestKit.VsTest/Akka.TestKit.VsTest.nuspec index 29960b87edd..71ff019830a 100644 --- a/src/contrib/testkits/Akka.TestKit.VsTest/Akka.TestKit.VsTest.nuspec +++ b/src/contrib/testkits/Akka.TestKit.VsTest/Akka.TestKit.VsTest.nuspec @@ -9,7 +9,7 @@ TestKit for writing tests for Akka.NET using Visual Studio Unit Testing Framework. https://github.com/akkadotnet/akka.net/blob/master/LICENSE https://github.com/akkadotnet/akka.net - https://raw.githubusercontent.com/akkadotnet/akka.net/gh-pages/images/icon.png + https://raw.githubusercontent.com/akkadotnet/akka.net/gh-pages/images/icon-32x32.png false @releaseNotes@ @copyright@ diff --git a/src/contrib/testkits/Akka.TestKit.Xunit/Akka.TestKit.Xunit.nuspec b/src/contrib/testkits/Akka.TestKit.Xunit/Akka.TestKit.Xunit.nuspec index 82ac5aceaeb..e26ea1fdedf 100644 --- a/src/contrib/testkits/Akka.TestKit.Xunit/Akka.TestKit.Xunit.nuspec +++ b/src/contrib/testkits/Akka.TestKit.Xunit/Akka.TestKit.Xunit.nuspec @@ -9,7 +9,7 @@ TestKit for writing tests for Akka.NET using xUnit. https://github.com/akkadotnet/akka.net/blob/master/LICENSE https://github.com/akkadotnet/akka.net - https://raw.githubusercontent.com/akkadotnet/akka.net/gh-pages/images/icon.png + https://raw.githubusercontent.com/akkadotnet/akka.net/gh-pages/images/icon-32x32.png false @releaseNotes@ @copyright@ diff --git a/src/core/Akka.Cluster/Akka.Cluster.nuspec b/src/core/Akka.Cluster/Akka.Cluster.nuspec index c36e6af38ac..a695c848c03 100644 --- a/src/core/Akka.Cluster/Akka.Cluster.nuspec +++ b/src/core/Akka.Cluster/Akka.Cluster.nuspec @@ -9,7 +9,7 @@ Cluster support for Akka.NET https://github.com/akkadotnet/akka.net/blob/master/LICENSE https://github.com/akkadotnet/akka.net - https://raw.githubusercontent.com/akkadotnet/akka.net/gh-pages/images/icon.png + https://raw.githubusercontent.com/akkadotnet/akka.net/gh-pages/images/icon-32x32.png false @releaseNotes@ @copyright@ diff --git a/src/core/Akka.FSharp/Akka.FSharp.nuspec b/src/core/Akka.FSharp/Akka.FSharp.nuspec index afad7797d7e..e90bc8751a3 100644 --- a/src/core/Akka.FSharp/Akka.FSharp.nuspec +++ b/src/core/Akka.FSharp/Akka.FSharp.nuspec @@ -9,7 +9,7 @@ F# API support for Akka.NET https://github.com/akkadotnet/akka.net/blob/master/LICENSE https://github.com/akkadotnet/akka.net - https://raw.githubusercontent.com/akkadotnet/akka.net/gh-pages/images/icon.png + https://raw.githubusercontent.com/akkadotnet/akka.net/gh-pages/images/icon-32x32.png false @releaseNotes@ @copyright@ diff --git a/src/core/Akka.Remote/Akka.Remote.nuspec b/src/core/Akka.Remote/Akka.Remote.nuspec index 064de817cfe..5d55f26383a 100644 --- a/src/core/Akka.Remote/Akka.Remote.nuspec +++ b/src/core/Akka.Remote/Akka.Remote.nuspec @@ -9,7 +9,7 @@ Remote actor support for Akka.NET https://github.com/akkadotnet/akka.net/blob/master/LICENSE https://github.com/akkadotnet/akka.net - https://raw.githubusercontent.com/akkadotnet/akka.net/gh-pages/images/icon.png + https://raw.githubusercontent.com/akkadotnet/akka.net/gh-pages/images/icon-32x32.png false @releaseNotes@ @copyright@ diff --git a/src/core/Akka.TestKit/Akka.TestKit.nuspec b/src/core/Akka.TestKit/Akka.TestKit.nuspec index 03f215a4da5..d402c39b395 100644 --- a/src/core/Akka.TestKit/Akka.TestKit.nuspec +++ b/src/core/Akka.TestKit/Akka.TestKit.nuspec @@ -10,7 +10,7 @@ This only contains base functionality. You need a Akka.TestKit.* package! https://github.com/akkadotnet/akka.net/blob/master/LICENSE https://github.com/akkadotnet/akka.net - https://raw.githubusercontent.com/akkadotnet/akka.net/gh-pages/images/icon.png + https://raw.githubusercontent.com/akkadotnet/akka.net/gh-pages/images/icon-32x32.png false @releaseNotes@ @copyright@ diff --git a/src/core/Akka/Akka.nuspec b/src/core/Akka/Akka.nuspec index dfe80f66755..c7ae21126f0 100644 --- a/src/core/Akka/Akka.nuspec +++ b/src/core/Akka/Akka.nuspec @@ -9,7 +9,7 @@ Akka.NET is a port of the popular Java/Scala framework Akka to .NET https://github.com/akkadotnet/akka.net/blob/master/LICENSE https://github.com/akkadotnet/akka.net - https://raw.githubusercontent.com/akkadotnet/akka.net/gh-pages/images/icon.png + https://raw.githubusercontent.com/akkadotnet/akka.net/gh-pages/images/icon-32x32.png false @releaseNotes@ @copyright@