diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4780f24..6467884 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.0.0 +current_version = 4.1.0 commit = True tag = True diff --git a/docker-compose.opensearch.yml b/docker-compose.opensearch.yml index db45cea..fb2891c 100644 --- a/docker-compose.opensearch.yml +++ b/docker-compose.opensearch.yml @@ -27,7 +27,7 @@ services: condition: on-failure app: - image: ghcr.io/opensanctions/yente:4.0.0 + image: ghcr.io/opensanctions/yente:4.1.0 depends_on: - index ports: diff --git a/docker-compose.yml b/docker-compose.yml index 6498d62..f4a422e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -26,7 +26,7 @@ services: condition: on-failure app: - image: ghcr.io/opensanctions/yente:4.0.0 + image: ghcr.io/opensanctions/yente:4.1.0 depends_on: - index ports: diff --git a/setup.py b/setup.py index 9457a1f..e835886 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name="yente", - version="4.0.0", + version="4.1.0", url="https://opensanctions.org/docs/api/", long_description=long_description, long_description_content_type="text/markdown", diff --git a/yente/settings.py b/yente/settings.py index 5eac5f4..5bdc37a 100644 --- a/yente/settings.py +++ b/yente/settings.py @@ -35,7 +35,7 @@ def random_cron() -> str: return f"{random_minute} * * * *" -VERSION = "4.0.0" +VERSION = "4.1.0" AUTHOR = "OpenSanctions" HOME_PAGE = "https://www.opensanctions.org/" EMAIL = "info@opensanctions.org"