diff --git a/build.ps1 b/build.ps1 index 635c332..dac8db0 100644 --- a/build.ps1 +++ b/build.ps1 @@ -43,3 +43,5 @@ Copy-Item -Path "output/Lite.StateMachine/Release/*.nupkg" -Destination "publish ##$dttm = (Get-Date).ToString("yyyy-MM-dd") ##$version = (Get-Item -Path "publish/win-x64/Lite.EventIpc.dll").VersionInfo.FileVersion ##Compress-Archive -Path "publish/win-x64/*" -DestinationPath "publish/Lite.EventIpc-${version}-(win-x64)_${dttm}.zip" + +Write-Output "Done" diff --git a/source/Lite.StateMachine/Lite.StateMachine.csproj b/source/Lite.StateMachine/Lite.StateMachine.csproj index e149f26..a252d1e 100644 --- a/source/Lite.StateMachine/Lite.StateMachine.csproj +++ b/source/Lite.StateMachine/Lite.StateMachine.csproj @@ -11,7 +11,7 @@ 2.2.0 $(AssemblyVersion) $(AssemblyVersion) - -alpha2 + $(VersionPrefix)$(VersionSuffix) True @@ -25,8 +25,11 @@ New Features in v2.2: * New: Renamed, Result.Ok -> Result.Success (Breaking Change). - * New: Renamed, Context.ErrorStaack -> Context.Errors (Breaking Change). + * New: Renamed, Context.ErrorStack -> Context.Errors (Breaking Change). * New: Context.NextStates provides ability to override the next transitions for a state. + * New: Context.PreviousStateId for informing where state came from (null on initial state) + * Update: Quicker execution + * Update: Generic cleanup New Features in v2.1: