Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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"
7 changes: 5 additions & 2 deletions source/Lite.StateMachine/Lite.StateMachine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<AssemblyVersion>2.2.0</AssemblyVersion>
<FileVersion>$(AssemblyVersion)</FileVersion>
<VersionPrefix>$(AssemblyVersion)</VersionPrefix>
<VersionSuffix>-alpha2</VersionSuffix>
<VersionSuffix></VersionSuffix>
<Version>$(VersionPrefix)$(VersionSuffix)</Version>

<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
Expand All @@ -25,8 +25,11 @@
New Features in v2.2:

* New: Renamed, Result.Ok -&gt; Result.Success (Breaking Change).
* New: Renamed, Context.ErrorStaack -&gt; Context.Errors (Breaking Change).
* New: Renamed, Context.ErrorStack -&gt; 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:

Expand Down