Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## [2025-05-05]

### `datafog-python` [4.1.0]
### `datafog-python` [4.1.1]

- Added engine selection functionality to TextService class, allowing users to choose between 'regex', 'spacy', or 'auto' annotation engines
- Enhanced TextService with intelligent fallback mechanism in 'auto' mode that tries regex first and falls back to spaCy if no entities are found
Expand Down
2 changes: 1 addition & 1 deletion datafog/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "4.1.0"
__version__ = "4.1.1"
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
project = "DataFog"
copyright = "2024, DataFog Inc."
author = "Sid Mohan"
release = "v4.1.0"
release = "v4.1.1"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
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 @@
long_description = f.read()

# Use a single source of truth for the version
__version__ = "4.1.0"
__version__ = "4.1.1"

project_urls = {
"Homepage": "https://datafog.ai",
Expand Down
2 changes: 1 addition & 1 deletion setup_lean.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
long_description = f.read()

# Use a single source of truth for the version
__version__ = "4.1.0"
__version__ = "4.1.1"

project_urls = {
"Homepage": "https://datafog.ai",
Expand Down
2 changes: 1 addition & 1 deletion setup_original.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
long_description = f.read()

# Use a single source of truth for the version
__version__ = "4.1.0"
__version__ = "4.1.1"

project_urls = {
"Homepage": "https://datafog.ai",
Expand Down