Skip to content

Commit 71afb9f

Browse files
committed
Bumping version to 1.4.15
1 parent ab1bd5f commit 71afb9f

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

RELEASE_NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release Notes
22

3-
## 1.4.14 - 2019-06-28
3+
## 1.4.15 - 2019-06-28
44
* Update deps
55
* Use --self-contained for Firmware
66
* Hook into view

src/Client/ReleaseNotes.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
module internal ReleaseNotes
22

3-
let Version = "1.4.14"
3+
let Version = "1.4.15"
44

55
let IsPrerelease = false
66

77
let Notes = """
88
# Release Notes
99
10-
## 1.4.14 - 2019-06-28
10+
## 1.4.15 - 2019-06-28
1111
* Update deps
1212
* Use --self-contained for Firmware
1313
* Hook into view

src/PiServer/Elmish.Audio.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ module Program =
7474
with _ -> ()
7575
}
7676

77-
let mapSetState setState model dispatch =
78-
let (v:Audio) = Program.view program model dispatch
77+
let mapView view model dispatch =
78+
let (v:Audio) = view model dispatch
7979
match lastView with
8080
| Some r when r = v -> ()
8181
| Some r ->
@@ -96,7 +96,7 @@ module Program =
9696
| _ -> ()
9797

9898
lastView <- Some v
99-
setState model dispatch
99+
v
100100

101101
program
102-
|> Program.map id id id mapSetState id
102+
|> Program.map id id mapView id id

0 commit comments

Comments
 (0)