release: 3.0.1

- use webrick gem which contains fixes against [CVE-2020-25613](https://www.ruby-lang.org/en/news/2020/09/29/http-request-smuggling-cve-2020-25613/)
This commit is contained in:
cn 2020-10-03 11:04:48 +02:00
parent b44517ec21
commit 109b27fecc
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ FROM alpine:3.12
EXPOSE 8080
ENV VERSION=3.0.0
ENV VERSION=3.0.1
RUN apk --no-cache add openssl ca-certificates && \
apk --no-cache add ruby ruby-etc ruby-webrick && \

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module OpenVPNStatusWeb
VERSION = '3.0.0'
VERSION = '3.0.1'
end