From d05bfe316431e6bb732cb8b3a3c18cee9bae40fb Mon Sep 17 00:00:00 2001 From: Ryszard Knop Date: Sun, 17 Mar 2024 00:53:00 +0100 Subject: [PATCH] Bump version to 0.4.0, update deps - python-slugify was not used anymore, dropped - pydantic held on 1.x, 2.x has a new binary dependency - urllib3 held on 1.x, still gotta go through the changelog - Everything else bumped to latest --- itch_dl/__init__.py | 2 +- pyproject.toml | 15 +++++++-------- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/itch_dl/__init__.py b/itch_dl/__init__.py index 80eb7f9..abeeedb 100644 --- a/itch_dl/__init__.py +++ b/itch_dl/__init__.py @@ -1 +1 @@ -__version__ = '0.3.3' +__version__ = '0.4.0' diff --git a/pyproject.toml b/pyproject.toml index 80f76ff..26db3df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "itch-dl" packages = [{ include = "itch_dl" }] -version = "0.3.3" +version = "0.4.0" description = "itch.io bulk game downloader" homepage = "https://github.com/DragoonAethis/itch-dl" repository = "https://github.com/DragoonAethis/itch-dl" @@ -24,13 +24,12 @@ classifiers = [ [tool.poetry.dependencies] python = "^3.8" -tqdm = "^4.64.0" -urllib3 = "^1.26.9" -requests = "^2.28.0" -python-slugify = "^6.1.2" -beautifulsoup4 = "^4.11.1" -lxml = "^4.9.4" -pydantic = "^1.9.1" +tqdm = "^4.66.2" +urllib3 = "^1.26.18" +requests = "^2.31.0" +beautifulsoup4 = "^4.12.3" +lxml = "^5.1.0" +pydantic = "^1.10.14" [tool.poetry.scripts] itch-dl = "itch_dl.cli:run"