From af7b1f336b55f4f654f19e4d2a0eaa50a25cabb8 Mon Sep 17 00:00:00 2001 From: Christian Stefanescu Date: Thu, 6 Apr 2023 13:41:24 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=203.18.4-rc3=20=E2=86=92=203.18?= =?UTF-8?q?.4-rc4?= 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 dfe354f49..98f13bf07 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.18.4-rc3 +current_version = 3.18.4-rc4 tag_name = {new_version} commit = True tag = True diff --git a/ingestors/__init__.py b/ingestors/__init__.py index 7157ae88b..fba23fdd2 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.18.4-rc3" +__version__ = "3.18.4-rc4" logging.getLogger("chardet").setLevel(logging.INFO) logging.getLogger("PIL").setLevel(logging.INFO) diff --git a/setup.py b/setup.py index c1eaee27a..6aae8e873 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="ingest", - version="3.18.4-rc3", + version="3.18.4-rc4", author="Organized Crime and Corruption Reporting Project", packages=find_packages(exclude=["tests"]), package_dir={"ingestors": "ingestors"},