From 64ec5e1e56493d216a511ea729baeb3846bc4bb9 Mon Sep 17 00:00:00 2001 From: cn Date: Tue, 14 Jul 2020 20:07:56 +0200 Subject: [PATCH] release: 3.0.0 - drop Ruby 2.3 and 2.4 compatibility - add Dockerfile --- docs/Dockerfile | 2 +- lib/openvpn-status-web/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Dockerfile b/docs/Dockerfile index 1f86709..d67a477 100644 --- a/docs/Dockerfile +++ b/docs/Dockerfile @@ -2,7 +2,7 @@ FROM alpine:3.12 EXPOSE 8080 -ENV VERSION=2.1.0 +ENV VERSION=3.0.0 RUN apk --no-cache add openssl ca-certificates && \ apk --no-cache add ruby ruby-etc ruby-webrick && \ diff --git a/lib/openvpn-status-web/version.rb b/lib/openvpn-status-web/version.rb index e527207..6eb72ce 100644 --- a/lib/openvpn-status-web/version.rb +++ b/lib/openvpn-status-web/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module OpenVPNStatusWeb - VERSION = '2.1.0' + VERSION = '3.0.0' end