From 987c4ac433dc91cb413443f54d13fabb0c95e445 Mon Sep 17 00:00:00 2001 From: David Danier Date: Sun, 10 May 2020 17:04:02 +0200 Subject: [PATCH] Preparing 1.1.5 --- .gitlab-ci.yml | 6 +++--- CHANGELOG.md | 8 ++++++++ 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d233853..23dd137 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,9 +2,9 @@ stages: - test pytest: - image: python:3.7 + image: python:3.8 stage: test script: - - pip install pipenv - - pipenv install --system --dev + - pip install poetry + - poetry install - pytest b5/tests -v diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b7da34..34f66e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ * work in progress ;-) +# 1.1.5 + +* Use poetry for package management +* Included first test + linting +* Rewrite of argument parsing +* Better support for detecting how to clone skel repositories +* Support Python 3.8 + # 1.1.4 * Docker sync config allows to specify `auto: false` to not automatically sync on `docker:update` and `docker:sync`, -- GitLab