Skip to content

Commit

Permalink
release 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pannal committed Mar 28, 2020
1 parent 56598d7 commit 485642e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@ RUN apt-get update \
apt-utils \
gcc \
g++ \
libffi-dev libssl-dev python3-dev \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

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
Expand Down
2 changes: 1 addition & 1 deletion kitana.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 485642e

Please sign in to comment.