Skip to content

Commit

Permalink
Bumping version to 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Oct 30, 2019
1 parent e9f29d7 commit 3321372
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release Notes

## 1.8.0 - 2019-10-30
## 1.8.1 - 2019-10-30
* Use GPIO from .NET Core 3

## 1.7.8 - 2019-10-30
Expand Down
4 changes: 2 additions & 2 deletions src/Client/ReleaseNotes.fs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
module internal ReleaseNotes

let Version = "1.8.0"
let Version = "1.8.1"

let IsPrerelease = false

let Notes = """
# Release Notes
## 1.8.0 - 2019-10-30
## 1.8.1 - 2019-10-30
* Use GPIO from .NET Core 3
## 1.7.8 - 2019-10-30
Expand Down
2 changes: 1 addition & 1 deletion src/PiServer/PiServer.fs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ let log =

let controller =
try
new GeneralIO.Controller(log)
new GeneralIO.Controller(log)
with
| exn ->
log.ErrorFormat("Error during GPIO init: {0}", exn.Message)
Expand Down
3 changes: 2 additions & 1 deletion src/Server/Server.fs
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@ let startupEndpoint userID =
})
}

let firmwareLink = sprintf "https://github.com/forki/Audio/releases/download/%s/PiFirmware.%s.zip" ReleaseNotes.Version ReleaseNotes.Version
let firmwareLink = @"https://audiohubstorage.blob.core.windows.net/firmware/PiFirmware.1.8.0.zip?st=2019-10-30T20%3A02%3A09Z&se=2019-10-31T20%3A02%3A09Z&sp=rl&sv=2018-03-28&sr=b&sig=mfrAkduWnctkNsQbcqh2PzUfptKLuArdtiZWu1dU%2B60%3D"
//sprintf "https://github.com/forki/Audio/releases/download/%s/PiFirmware.%s.zip" ReleaseNotes.Version ReleaseNotes.Version

let getLatestFirmware next ctx = redirectTo false firmwareLink next ctx

Expand Down

0 comments on commit 3321372

Please sign in to comment.