diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 83e9e3128..efb894dbc 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.22.0-rc1 +current_version = 3.22.0 tag_name = {new_version} commit = True tag = True diff --git a/ingestors/__init__.py b/ingestors/__init__.py index 989122e3b..b2f771cce 100644 --- a/ingestors/__init__.py +++ b/ingestors/__init__.py @@ -2,7 +2,7 @@ import logging -__version__ = "3.22.0-rc1" +__version__ = "3.22.0" logging.getLogger("chardet").setLevel(logging.INFO) logging.getLogger("PIL").setLevel(logging.INFO) diff --git a/setup.py b/setup.py index bd338f33b..86115f276 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="ingest", - version="3.22.0-rc1", + version="3.22.0", author="Organized Crime and Corruption Reporting Project", packages=find_packages(exclude=["tests"]), package_dir={"ingestors": "ingestors"},