preperation for release 2.1.1
All checks were successful
ci/woodpecker/push/tests Pipeline was successful
ci/woodpecker/pr/tests Pipeline was successful
ci/woodpecker/pr/build_docker Pipeline was successful

This commit is contained in:
Ivan Schaller 2022-05-18 20:14:21 +02:00
parent 91f641587c
commit 53c291c01f
6 changed files with 21 additions and 5 deletions

View file

@ -10,6 +10,22 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- Add support for more sites
## [2.1.1] - 2022-05-18
### Fixed
- Progress bar on verbose output
- Sonarqube link for CI
- A few typos
- Removed unnecessary escapes from file rename regex
### Added
- API template
### Changed
- Updated docker baseimage
- Rewrote app.py to a class
## [2.1.0] - 2022-05-16
### Fixed

View file

@ -7,7 +7,7 @@ LABEL build_version="Version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="Ivan Schaller"
# manga-dlp version
ENV MDLP_VERSION=2.1.0
ENV MDLP_VERSION=2.1.1
# install packages
RUN \

View file

@ -7,7 +7,7 @@ LABEL build_version="Version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="Ivan Schaller"
# manga-dlp version
ENV MDLP_VERSION=2.1.0
ENV MDLP_VERSION=2.1.1
# install packages
RUN \

View file

@ -2,7 +2,7 @@ from mangadlp.input import get_args
import os
import sys
mangadlp_version = "2.1.0"
mangadlp_version = "2.1.1"
def get_input():

View file

@ -1,7 +1,7 @@
import argparse
import mangadlp.app as app
mangadlp_version = "2.1.0"
mangadlp_version = "2.1.1"
def call_app(args):

View file

@ -7,7 +7,7 @@ long_description = readme.read_text()
setuptools.setup(
name="manga-dlp",
version="2.1.0",
version="2.1.1",
author="Ivan Schaller",
author_email="ivan@schaller.sh",
description="A cli manga downloader",