From baa0d9ecc702a4e6471a829f674c5ec6445c91ca Mon Sep 17 00:00:00 2001 From: benoit74 Date: Thu, 13 Jun 2024 11:42:17 +0000 Subject: [PATCH] Prepare for next release --- CHANGELOG.md | 2 ++ pyproject.toml | 5 ++++- src/zimit/__about__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 652f1b9..b328b8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ All notable changes to this project are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) (as of version 1.2.0). +## [Unreleased] + ## [2.0.1] - 2024-06-13 ### Changed diff --git a/pyproject.toml b/pyproject.toml index 36a5a54..99ff0b9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,13 +11,16 @@ dependencies = [ "requests==2.32.3", "inotify==0.2.10", "tld==0.13", - "warc2zim==2.0.1", + "warc2zim @ git+https://github.com/openzim/warc2zim@main", ] dynamic = ["authors", "classifiers", "keywords", "license", "version", "urls"] [tool.hatch.metadata.hooks.openzim-metadata] kind = "scraper" +[tool.hatch.metadata] +allow-direct-references = true # to be removed once we use a released warc2zim version + [project.optional-dependencies] scripts = [ "invoke==2.2.0", diff --git a/src/zimit/__about__.py b/src/zimit/__about__.py index 159d48b..0c0beb4 100644 --- a/src/zimit/__about__.py +++ b/src/zimit/__about__.py @@ -1 +1 @@ -__version__ = "2.0.1" +__version__ = "2.0.2-dev0"