From f695ccfecfb8054c65cafadab45d3e65fcd4dbdd Mon Sep 17 00:00:00 2001
From: Calum Mackervoy <c.mackervoy@gmail.com>
Date: Fri, 22 May 2020 13:53:33 +0000
Subject: [PATCH] minor: Federation support by enabling backlinks

---
 .gitlab-ci.yml | 4 +++-
 setup.cfg      | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c33716f..d8ec88a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -61,13 +61,15 @@ test:
 publish:
   stage: release
   before_script:
-    - pip install python-semantic-release sib-commit-parser
+    - pip install python-semantic-release~=5.0 sib-commit-parser~=0.3
     - git config user.name "${GITLAB_USER_NAME}"
     - git config user.email "${GITLAB_USER_EMAIL}"
     - git remote set-url origin "https://gitlab-ci-token:${GL_TOKEN}@${CI_SERVER_HOST}/${CI_PROJECT_PATH}.git"
+    - git fetch --tags
   script:
     - semantic-release publish
   only:
     - master
   tags:
     - deploy
+
diff --git a/setup.cfg b/setup.cfg
index 38922fc..baa555b 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -10,7 +10,7 @@ license = MIT
 [options]
 packages = find:
 install_requires =
-    djangoldp~=0.5
+    djangoldp~=0.7
 
 [options.extras_require]
 include_package_data = True
-- 
GitLab