changelog and version bump

This commit is contained in:
bobokun 2023-05-22 21:50:29 -04:00
parent 4c7c54f1cb
commit b7af4de4ac
No known key found for this signature in database
GPG key ID: B73932169607D927
3 changed files with 4 additions and 2 deletions

View file

@ -3,6 +3,7 @@
- requests updated to 2.30.0
- ruamel.yaml updated to 0.17.26
- Adds new dependency bencodepy to generate hash for cross-seed
- Adds new dependency GitPython for checking git branches
# Bug Fixes
- Changes HardLink Logic (Thanks to @ColinHebert for the suggestion) Fixes #291
@ -13,5 +14,6 @@
- Fixes #292
- Fixes #201
- Fixes #279
- Updates Dockerfile to debloat and move to Python 3.11
**Full Changelog**: https://github.com/StuffAnThings/qbit_manage/compare/v3.6.2...v3.6.3

View file

@ -11,7 +11,7 @@ RUN echo "**** install system packages ****" \
&& apt-get update \
&& apt-get upgrade -y --no-install-recommends \
&& apt-get install -y tzdata --no-install-recommends \
&& apt-get install -y gcc g++ libxml2-dev libxslt-dev bash curl wget jq grep sed coreutils findutils unzip p7zip ca-certificates \
&& apt-get install -y gcc g++ libxml2-dev libxslt-dev libz-dev bash curl wget jq grep sed coreutils findutils unzip p7zip ca-certificates \
&& wget -O /tini https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-"$(dpkg --print-architecture | awk -F- '{ print $NF }')" \
&& chmod +x /tini \
&& pip3 install --no-cache-dir --upgrade --requirement /requirements.txt \

View file

@ -1 +1 @@
3.6.3-develop1
3.6.3-develop2