Skip to content

v0.1.1-beta

Compare
Choose a tag to compare
@TanmoySG TanmoySG released this 10 Jul 19:42
· 71 commits to main since this release
9624cf3

[Fix] v0.1.1-beta

Fix/Handle execution for no initial/entry step [#4]

In v0.1.0-beta if there are no steps (no initial or subsequent steps) then the Execute() functions panics and exits. To Fix this adding a simple check to see if (initial) steps are not empty. If it is then no error is returned or no panics are caused.

if len(steps) == 0 {
	return nil, nil
}

Commit: 9624cf3

What's Changed

  • Fix/Handle execution for no initial/entry step by @TanmoySG in #4

Full Changelog: v0.1.0-beta...v0.1.1-beta