From 365cfd0911dd9a822ff3875e139c4c6d773b167f Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Mon, 26 Sep 2022 00:24:37 +0200 Subject: [PATCH 1/3] Simple drone integration that just tries to build package --- .drone.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..ae822ec --- /dev/null +++ b/.drone.yml @@ -0,0 +1,14 @@ +--- +kind: pipeline +type: docker +name: delugeClient + +platform: + os: linux + arch: amd64 + +steps: + - name: Build package + image: python:3.8 + commands: + - make build From 5ffb97824f3ee14816c24895e6d8ab3548277bb6 Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Mon, 26 Sep 2022 00:33:19 +0200 Subject: [PATCH 2/3] Updated readme w/ drone ci badge --- README.md | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 8eb4a6a..cba48e2 100644 --- a/README.md +++ b/README.md @@ -4,18 +4,15 @@

A easy to use Deluge CLI that can connect to Deluge RPC (even over ssh) written entirely in python.

-

- - - - - Known Vulnerabilities - - - - - -

+| Tested version | PyPi package | Drone CI | +|:--------|:------|:------|:------------| +| [![PyVersion](https://img.shields.io/badge/python-3.8-blue.svg)](https://www.python.org/downloads/release/python-380/) | [![PyPI](https://img.shields.io/pypi/v/delugeClient_kevin)](https://pypi.org/project/delugeClient_kevin/) | [![Build Status](https://drone.schleppe.cloud/api/badges/KevinMidboe/delugeClient/status.svg)](https://drone.schleppe.cloud/KevinMidboe/delugeClient) + + +| Known vulnerabilities | License | +|:--------|:------| +| [![Known Vulnerabilities](https://snyk.io/test/github/kevinmidboe/delugeClient/badge.svg?targetFile=requirements.txt)](https://snyk.io/test/github/kevinmidboe/delugeClient?targetFile=requirements.txt) |[![License](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE) +

Abstract • From 0cc33c98c137dc6e0506e0d55e958f42e2a37ebc Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Mon, 26 Sep 2022 00:33:50 +0200 Subject: [PATCH 3/3] Bumped to version 0.2.2 --- delugeClient/__version__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/delugeClient/__version__.py b/delugeClient/__version__.py index fc79d63..020ed73 100644 --- a/delugeClient/__version__.py +++ b/delugeClient/__version__.py @@ -1 +1 @@ -__version__ = '0.2.1' +__version__ = '0.2.2'