From b34a59f0fe7bf1ec741f044e268ac35e8c62c4bb Mon Sep 17 00:00:00 2001 From: Antony Male Date: Wed, 11 Feb 2015 12:50:49 +0000 Subject: [PATCH 1/2] Update changelog --- CHANGELOG.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) 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 ------ From b1059cf7fff69f1a81050a217ab2037c7e5b715b Mon Sep 17 00:00:00 2001 From: Antony Male Date: Wed, 11 Feb 2015 12:51:26 +0000 Subject: [PATCH 2/2] Bump version --- NuGet/Stylet.nuspec | 2 +- Stylet/Properties/AssemblyInfo.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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")]