preperation for 2.1.2
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-20 20:56:40 +02:00
parent b4340a93b8
commit 2837d8c068
6 changed files with 19 additions and 5 deletions

View file

@ -10,6 +10,20 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- Add support for more sites - Add support for more sites
## [2.1.2] - 2022-05-20
### Fixed
- List chapters when none were specified
- Typos
### Added
- Ability to download whole volumes
### Changed
- Moved processing of list with links to input.py
- Updated README for volume and chapter selection
## [2.1.1] - 2022-05-18 ## [2.1.1] - 2022-05-18
### Fixed ### Fixed

View file

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

View file

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

View file

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

View file

@ -2,7 +2,7 @@ import argparse
import mangadlp.app as app import mangadlp.app as app
from pathlib import Path from pathlib import Path
mangadlp_version = "2.1.1" mangadlp_version = "2.1.2"
def check_args(args): def check_args(args):

View file

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