diff --git a/CHANGELOG b/CHANGELOG index acfbf20..856a1b4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +0.3.2 +- update dependencies +- support relay connections + 0.3.1-5 - fix restart icon/glyph to better represent what it does (#32) - fix inexistant httpsRequired (#33) diff --git a/Dockerfile b/Dockerfile index 50a0354..99d4995 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,7 @@ RUN apt-get update \ apt-utils \ gcc \ g++ \ + libffi-dev libssl-dev python3-dev \ --no-install-recommends \ && rm -rf /var/lib/apt/lists/* @@ -16,7 +17,7 @@ COPY requirements.txt /app # Install any needed packages specified in requirements.txt RUN pip install --trusted-host pypi.python.org -r requirements.txt \ - && apt-get purge -y --auto-remove gcc g++ + && apt-get purge -y --auto-remove gcc g++ libffi-dev libssl-dev python3-dev # Copy the current directory contents into the container at /app COPY . /app diff --git a/kitana.py b/kitana.py index 32bd3e0..beafa56 100644 --- a/kitana.py +++ b/kitana.py @@ -61,7 +61,7 @@ def maintenance(): class Kitana(object): PRODUCT_IDENTIFIER = "Kitana" - VERSION = "0.3.1-5" + VERSION = "0.3.2" CLIENT_IDENTIFIER_BASE = "{}_{}".format(PRODUCT_IDENTIFIER, VERSION) initialized = False timeout = 5