Skip to content

Commit

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

## 0.0.31 - 2018-10-05
## 0.0.32 - 2018-10-05

* Initial release
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 = "0.0.31"
let Version = "0.0.32"

let IsPrerelease = false

let Notes = """
# Release Notes
## 0.0.31 - 2018-10-05
## 0.0.32 - 2018-10-05
* Initial release
"""
7 changes: 6 additions & 1 deletion src/Server/AzureTable.fs
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,11 @@ let inline getOptionalDoubleProperty (propName:string) (entity: DynamicTableEnti
with
| exn -> failwithf "Could not get Double value of property %s for entity %s %s. Message: %s" propName entity.PartitionKey entity.RowKey exn.Message

#if DEBUG
let storageConnectionString = "UseDevelopmentStorage=true"
#else
let storageConnectionString = System.Environment.GetEnvironmentVariable("CUSTOMCONNSTR_STORAGE")
#endif


let getConnectionToAzureStorage() = (AzureConnection storageConnectionString).Connect()
let connectionToAzureStorage = (AzureConnection storageConnectionString).Connect()

0 comments on commit e93f470

Please sign in to comment.