From a8f775460c4e423886dbfda5a9dab48ecf794be5 Mon Sep 17 00:00:00 2001
From: Eliot Berriot <contact@eliotberriot.com>
Date: Wed, 27 Dec 2017 23:43:53 +0100
Subject: [PATCH] Version bump and changelog

---
 CHANGELOG                     | 9 ++++++++-
 api/Dockerfile                | 1 -
 api/funkwhale_api/__init__.py | 2 +-
 3 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG
index 8842b68d..9f3551d4 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,10 +1,17 @@
 Changelog
 =========
 
-0.3.2 (Unreleased)
+
+0.3.3 (Unreleased)
 ------------------
 
 
+0.3.2
+------------------
+
+- Fixed an issue in the main dockerfile
+
+
 0.3.1
 ------------------
 
diff --git a/api/Dockerfile b/api/Dockerfile
index ef026690..3281e6f5 100644
--- a/api/Dockerfile
+++ b/api/Dockerfile
@@ -7,7 +7,6 @@ ENV PYTHONUNBUFFERED 1
 COPY ./requirements.apt /requirements.apt
 RUN apt-get update -qq && grep "^[^#;]" requirements.apt | xargs apt-get install -y
 RUN curl -L https://github.com/acoustid/chromaprint/releases/download/v1.4.2/chromaprint-fpcalc-1.4.2-linux-x86_64.tar.gz | tar -xz -C /usr/local/bin --strip 1
-RUN fcalc yolofkjdssdhf
 COPY ./requirements/base.txt /requirements/base.txt
 RUN pip install -r /requirements/base.txt
 COPY ./requirements/production.txt /requirements/production.txt
diff --git a/api/funkwhale_api/__init__.py b/api/funkwhale_api/__init__.py
index a60d0ef3..08bf2149 100644
--- a/api/funkwhale_api/__init__.py
+++ b/api/funkwhale_api/__init__.py
@@ -1,3 +1,3 @@
 # -*- coding: utf-8 -*-
-__version__ = '0.3.1'
+__version__ = '0.3.2'
 __version_info__ = tuple([int(num) if num.isdigit() else num for num in __version__.replace('-', '.', 1).split('.')])
-- 
GitLab