Skip to content

Commit

Permalink
Bump version: 4.0.0-rc5 → 4.0.0-rc6
Browse files Browse the repository at this point in the history
  • Loading branch information
catileptic committed Mar 21, 2024
1 parent 20ede98 commit 94ad95f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[bumpversion]
current_version = 4.0.0-rc5
current_version = 4.0.0-rc6
tag_name = {new_version}
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)([-](?P<release>(pre|rc))(?P<build>\d+))?
serialize =
serialize =
{major}.{minor}.{patch}-{release}{build}
{major}.{minor}.{patch}

[bumpversion:part:release]
optional_value = prod
first_value = rc
values =
values =
rc
prod

Expand Down
2 changes: 1 addition & 1 deletion ingestors/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Provides a set of ingestors based on different file types."""
import logging

__version__ = "4.0.0-rc5"
__version__ = "4.0.0-rc6"

logging.getLogger("chardet").setLevel(logging.INFO)
logging.getLogger("PIL").setLevel(logging.INFO)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="ingest",
version="4.0.0-rc5",
version="4.0.0-rc6",
author="Organized Crime and Corruption Reporting Project",
packages=find_packages(exclude=["tests"]),
package_dir={"ingestors": "ingestors"},
Expand Down

0 comments on commit 94ad95f

Please sign in to comment.