diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 0ce6a97..debb8c6 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,6 +1,17 @@ Stylet Changelog ================ +v1.1.0 +------ + + - Backwards-incompatible changes to Bootstrapper: Configure is now called *after* ConfigureIoC, OnStart came before ConfigureIoC, and OnLaunch now happens after Launch + - Screen now uses a property enum-based state machine to manage state. IActivate, IDeactivate and IClose have all been rolled into IScreenState + - Fix incorrect use of WeakEventManager in ScreenExtensions: ConductWith won't have been working properly + - Set WindowStartupLocation to CenterOwner if the user hasn't set it themselves + - WindowManager does not set the Title binding (to DisplayName) if it's been set by the user + - Actions throw on execute if ActionTarget hasn't changed from the default. This catches an edge-case where Actions are used inside something like a ContextMenu which breaks the visual tree + - + v1.0.7 ------ diff --git a/NuGet/Stylet.nuspec b/NuGet/Stylet.nuspec index 36aae31..b0369d4 100644 --- a/NuGet/Stylet.nuspec +++ b/NuGet/Stylet.nuspec @@ -2,7 +2,7 @@ Stylet - 1.0.7 + 1.1.0 Stylet Antony Male Antony Male diff --git a/Stylet/Properties/AssemblyInfo.cs b/Stylet/Properties/AssemblyInfo.cs index e2b2012..265d1c0 100644 --- a/Stylet/Properties/AssemblyInfo.cs +++ b/Stylet/Properties/AssemblyInfo.cs @@ -35,5 +35,5 @@ using System.Windows.Markup; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.7.0")] -[assembly: AssemblyFileVersion("1.0.7.0")] +[assembly: AssemblyVersion("1.1.0.0")] +[assembly: AssemblyFileVersion("1.1.0.0")]