Skip to content

Commit

Permalink
v0.3.0 - Flow
Browse files Browse the repository at this point in the history
## [0.3.0] - 2021-04-07
- **[Added]** The **`flow`** machenism that allows you to push information from the current state directly to the next state. The variable `self.flow_in` contains the information from the previous state and you set `self.flow_out` to hold information that goes to the next state. The flow is not carried over unless specified by the state. For `machine`,`sequential states`, `flow` are passed into low-level states.
- **[Changed]** Restructure the code, such that core is in a sperate module instead of using the same file. `Board` is now in `core` instead of it's own namespace.
- **[Added]** Other tests that check for consistency of implementation.
  • Loading branch information
xiangzhi committed Apr 7, 2021
1 parent 639e692 commit 86a5896
Show file tree
Hide file tree
Showing 19 changed files with 599 additions and 425 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [0.3.0] - 2021-04-07
- **[Added]** The **`flow`** machenism that allows you to push information from the current state directly to the next state. The variable `self.flow_in` contains the information from the previous state and you set `self.flow_out` to hold information that goes to the next state. The flow is not carried over unless specified by the state. For `machine`,`sequential states`, `flow` are passed into low-level states.
- **[Changed]** Restructure the code, such that core is in a sperate module instead of using the same file. `Board` is now in `core` instead of it's own namespace.
- **[Added]** Other tests that check for consistency of implementation.

## [0.2.4] - 2021-03-25
- **[Added]** Ability to load a python dictionary straight into the board. `board.load`
- **[Added]** A shorthand method to transition when the run_thread is done.
Expand Down
Loading

0 comments on commit 86a5896

Please sign in to comment.