From 5f91b179a3de0eb67057122a023756c07d2fab13 Mon Sep 17 00:00:00 2001 From: Abhinav Singh Date: Thu, 10 Oct 2019 15:45:57 -0700 Subject: [PATCH] Always update latest tag for docker releases --- Makefile | 1 + proxy.py | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8cba0b7b..5dc56f94 100644 --- a/Makefile +++ b/Makefile @@ -60,6 +60,7 @@ run-container: release-container: docker push $(IMAGE_TAG) + docker push $(LATEST_TAG) https-certificates: # Generate server key diff --git a/proxy.py b/proxy.py index 1c924dbb..dd914b4e 100755 --- a/proxy.py +++ b/proxy.py @@ -52,8 +52,7 @@ PROXY_PY_START_TIME = time.time() VERSION = (1, 1, 1) __version__ = '.'.join(map(str, VERSION[0:3])) -__description__ = 'Lightweight, Programmable, TLS interceptor Proxy for HTTP(S), HTTP2, ' \ - 'WebSockets protocols in a single Python file.' +__description__ = '⚡⚡⚡ Fast, Lightweight, Programmable Proxy Server in a single Python file.' __author__ = 'Abhinav Singh' __author_email__ = 'mailsforabhinav@gmail.com' __homepage__ = 'https://github.com/abhinavsingh/proxy.py'