From 38ea7a1c04659b6f35ba08561e2ae58f21e7a054 Mon Sep 17 00:00:00 2001 From: Till Prochaska Date: Thu, 13 Jul 2023 12:13:07 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=203.19.1=20=E2=86=92=203.19.2-r?= =?UTF-8?q?c1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- ingestors/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 36feb5e57..4dbf431cb 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.19.1 +current_version = 3.19.2-rc1 tag_name = {new_version} commit = True tag = True diff --git a/ingestors/__init__.py b/ingestors/__init__.py index cf2d493c3..1b15d53d9 100644 --- a/ingestors/__init__.py +++ b/ingestors/__init__.py @@ -1,7 +1,7 @@ """Provides a set of ingestors based on different file types.""" import logging -__version__ = "3.19.1" +__version__ = "3.19.2-rc1" logging.getLogger("chardet").setLevel(logging.INFO) logging.getLogger("PIL").setLevel(logging.INFO) diff --git a/setup.py b/setup.py index 57cd5ad2e..e0fc31d7e 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="ingest", - version="3.19.1", + version="3.19.2-rc1", author="Organized Crime and Corruption Reporting Project", packages=find_packages(exclude=["tests"]), package_dir={"ingestors": "ingestors"},