Bump version: 2.1.7 → 2.1.8
All checks were successful
ci/woodpecker/push/tests Pipeline was successful
ci/woodpecker/tag/tests Pipeline was successful
ci/woodpecker/tag/publish_release Pipeline was successful
ci/woodpecker/tag/publish_build Pipeline was successful
ci/woodpecker/tag/publish_docker Pipeline was successful

This commit is contained in:
Ivan Schaller 2022-06-22 22:31:45 +02:00
parent 6d4e0fb02c
commit 5efac3de11
6 changed files with 9 additions and 9 deletions

View file

@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 2.1.7 current_version = 2.1.8
commit = True commit = True
tag = False tag = False
serialize = {major}.{minor}.{patch} serialize = {major}.{minor}.{patch}

View file

@ -30,7 +30,7 @@ pipeline:
dockerfile: docker/Dockerfile.amd64 dockerfile: docker/Dockerfile.amd64
auto_tag: true auto_tag: true
auto_tag_suffix: linux-amd64-test auto_tag_suffix: linux-amd64-test
build_args: BUILD_VERSION=2.1.7 build_args: BUILD_VERSION=2.1.8
# build docker image for arm64 # build docker image for arm64
test-build-arm64: test-build-arm64:
@ -46,4 +46,4 @@ pipeline:
dockerfile: docker/Dockerfile.arm64 dockerfile: docker/Dockerfile.arm64
auto_tag: true auto_tag: true
auto_tag_suffix: linux-arm64-test auto_tag_suffix: linux-arm64-test
build_args: BUILD_VERSION=2.1.7 build_args: BUILD_VERSION=2.1.8

View file

@ -24,8 +24,8 @@ pipeline:
image: cr.44net.ch/baseimages/debian-base image: cr.44net.ch/baseimages/debian-base
pull: true pull: true
commands: commands:
- tar -czf manga-dlp-2.1.7.tar.gz --files-from=release-files.txt - tar -czf manga-dlp-2.1.8.tar.gz --files-from=release-files.txt
- tar -tzf manga-dlp-2.1.7.tar.gz - tar -tzf manga-dlp-2.1.8.tar.gz
# create release-notes # create release-notes
test-create-release-notes: test-create-release-notes:
@ -35,5 +35,5 @@ pipeline:
image: cr.44net.ch/baseimages/debian-base image: cr.44net.ch/baseimages/debian-base
pull: true pull: true
commands: commands:
- bash get_release_notes.sh 2.1.7 - bash get_release_notes.sh 2.1.8
- cat RELEASENOTES.md - cat RELEASENOTES.md

View file

@ -1,6 +1,6 @@
from mangadlp.input import main from mangadlp.input import main
MDLP_VERSION = "2.1.7" MDLP_VERSION = "2.1.8"
if __name__ == "__main__": if __name__ == "__main__":
main() main()

View file

@ -5,7 +5,7 @@ from pathlib import Path
import mangadlp.app as app import mangadlp.app as app
MDLP_VERSION = "2.1.7" MDLP_VERSION = "2.1.8"
def check_args(args): def check_args(args):

View file

@ -3,7 +3,7 @@ requires = ["hatchling"]
build-backend = "hatchling.build" build-backend = "hatchling.build"
[project] [project]
version = "2.1.7" version = "2.1.8"
name = "manga-dlp" name = "manga-dlp"
description = "A cli manga downloader" description = "A cli manga downloader"
readme = "README.md" readme = "README.md"