diff --git a/Dockerfile b/Dockerfile index 57fedf30..284c9341 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,14 +31,6 @@ DJANGO_SECRET_KEY=notsosecretkey\ WORKDIR /code RUN pip install pipenv; pipenv install --dev --system -# Create .po and .mo translation files -WORKDIR /code/polaris/polaris -RUN django-admin compilemessages -WORKDIR /code/server -RUN django-admin compilemessages - -WORKDIR /code - # Compile static assets, collect static assets, run migrations RUN python manage.py compilescss; python manage.py collectstatic --no-input -v 0 diff --git a/docs/conf.py b/docs/conf.py index b4326f98..c8527133 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -33,9 +33,9 @@ author = "Jake Urban" # The short X.Y version -version = "0.10.1" +version = "0.10.2" # The full version, including alpha/beta/rc tags -release = "0.10.1" +release = "0.10.2" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 36813836..046bbea6 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name="django-polaris", - version="0.10.1", + version="0.10.2", description="A SEP-24-compliant Django anchor server", long_description=long_description, long_description_content_type="text/markdown",