Skip to content

Commit

Permalink
[CT-1916] chore: Add mask service (#102)
Browse files Browse the repository at this point in the history
* [CT-1916] chore: Add mask service

* [CT-1916]chore: Linting

* [CT-1916] chore: Remove tests

* Tests will be added after FBB release

* [CT-1916] chore: Update version

* [CT-1916] chore: Update version to 8.1.0
  • Loading branch information
lyuzinmaxim authored Mar 28, 2024
1 parent 29cdd8a commit d2211c3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=7.1.0
VERSION=8.1.0

SHELL := /bin/bash

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "redact"
version = "7.1.0"
version = "8.1.0"
description = "Command-line and Python client for Brighter AI's Redact"
authors = ["brighter AI <[email protected]>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion redact/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Python client for "brighter Redact"
"""

__version__ = "7.1.0"
__version__ = "8.1.0"

from .errors import RedactConnectError, RedactResponseError
from .v4.data_models import (
Expand Down
1 change: 1 addition & 0 deletions redact/v4/data_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ class ServiceType(StrEnum):
blur = "blur"
dnat = "dnat"
redact_area = "redact_area"
mask = "mask"


class InputType(StrEnum):
Expand Down

0 comments on commit d2211c3

Please sign in to comment.