Skip to content

Commit

Permalink
Bumping version to 0.16.10
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Dec 15, 2018
1 parent 90bd155 commit ae6e3be
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
FROM microsoft/dotnet:2.2.0-runtime
COPY /deploy .

# Install Python.
RUN \
apt-get update && \
apt-get install -y python python-dev python-pip python-virtualenv && \
rm -rf /var/lib/apt/lists/*

ADD https://yt-dl.org/downloads/latest/youtube-dl /usr/local/bin/youtube-dl
RUN chmod a+rx /usr/local/bin/youtube-dl
WORKDIR .
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

## 0.16.9 - 2018-12-15
## 0.16.10 - 2018-12-15
* Update to ASP.NET 2.2

## 0.15.11 - 2018-11-05
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 = "0.16.9"
let Version = "0.16.10"

let IsPrerelease = false

let Notes = """
# Release Notes
## 0.16.9 - 2018-12-15
## 0.16.10 - 2018-12-15
* Update to ASP.NET 2.2
## 0.15.11 - 2018-11-05
Expand Down

0 comments on commit ae6e3be

Please sign in to comment.