Skip to content

Commit

Permalink
Bumping version to 1.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Mar 16, 2019
1 parent 0f09501 commit abc8bd9
Show file tree
Hide file tree
Showing 7 changed files with 658 additions and 557 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM microsoft/dotnet:2.2.0-runtime
FROM microsoft/dotnet:2.2.1-runtime
COPY /deploy .

# Install Python.
Expand Down
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.1.3 - 2019-03-16
## 1.1.5 - 2019-03-16
* Upgrade Raspbian

## 1.1.0 - 2019-01-20
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "sdk": { "version": "2.2.100" } }
{ "sdk": { "version": "2.2.105" } }
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,31 @@
"private": true,
"dependencies": {
"@babel/polyfill": "7.2.5",
"@babel/runtime": "7.2.0",
"@babel/runtime": "7.3.4",
"proj4": "2.5.0",
"react": "16.7.0",
"react-bootstrap": "0.32.4",
"react-dom": "16.7.0",
"react": "16.8.4",
"react-bootstrap": "1.0.0-beta.5",
"react-dom": "16.8.4",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.2.3",
"@babel/plugin-transform-runtime": "7.2.0",
"@babel/preset-env": "7.2.3",
"@babel/core": "7.3.4",
"@babel/plugin-proposal-class-properties": "7.3.4",
"@babel/plugin-transform-runtime": "7.3.4",
"@babel/preset-env": "7.3.4",
"@babel/preset-react": "7.0.0",
"babel-loader": "8.0.5",
"concurrently": "4.1.0",
"fable-compiler": "2.1.10",
"fable-loader": "2.1.2",
"fable-compiler": "2.1.12",
"fable-loader": "2.1.5",
"fable-utils": "1.2.0",
"node-sass": "4.11.0",
"remotedev": "0.2.9",
"sass-loader": "7.1.0",
"style-loader": "0.23.1",
"terser-webpack-plugin": "1.2.1",
"webpack": "4.29.0",
"webpack-cli": "3.2.1",
"webpack-dev-server": "3.1.14"
"terser-webpack-plugin": "1.2.3",
"webpack": "4.29.6",
"webpack-cli": "3.3.0",
"webpack-dev-server": "3.2.1"
}
}
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.1.3"
let Version = "1.1.5"

let IsPrerelease = false

let Notes = """
# Release Notes
## 1.1.3 - 2019-03-16
## 1.1.5 - 2019-03-16
* Upgrade Raspbian
## 1.1.0 - 2019-01-20
Expand Down
2 changes: 0 additions & 2 deletions src/Shared/Shared.fs
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,6 @@ type TagActionForBox =
TagActionForBox.StopMusik
else
let pos = Math.Abs(position % urls.Length)
if pos > urls.Length - 1 || pos < 0 then
failwithf "Urls.Length %d but index is %d" urls.Length pos
TagActionForBox.PlayMusik urls.[pos]
| _ -> failwithf "Can't convert %A" action

Expand Down
Loading

0 comments on commit abc8bd9

Please sign in to comment.