File tree 1 file changed +9
-3
lines changed
1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,15 @@ changes.
9
9
10
10
## UNRELEASED
11
11
12
- * ** BREAKING** : Made ` initialState ` ` Gen state ` instead of a ` state ` and introduced ` setup :: state -> m () ` to ` RunModel ` .
13
- - To migrate an existing model simply replace ` initialState = MyState{..} ` with ` initialState = pure $ MyState{..} ` and everything
14
- else should work straight-forwardly.
12
+ * ** BREAKING** : The ` Actions ` pattern now has a field for the initial state of
13
+ the actions sequence and the ` runActions ` function returns a triple with the
14
+ intial state, environment, and final state.
15
+
16
+ * ** BREAKING** : Made ` initialState ` ` Gen state ` instead of a ` state ` and
17
+ introduced ` setup :: state -> m () ` to ` RunModel ` .
18
+ - To migrate an existing model simply replace ` initialState = MyState{..} `
19
+ with ` initialState = pure $ MyState{..} ` and everything else should work
20
+ straight-forwardly.
15
21
16
22
* ** BREAKING** : Removed ` Realized `
17
23
- To migrate uses of ` Realized ` with ` IOSim ` , index the state type on the choice of ` RunModel ` monad
You can’t perform that action at this time.
0 commit comments