diff --git a/CHANGELOG.md b/CHANGELOG.md index fe21366..6e92d3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +### anonipy-0.1.2 (2024-07-23) + +**Bug Fixes:** + +- Fix entity creation in `PatternExtractor` +- Fix documentation duplication + + ### anonipy-0.1.1 (2024-07-16) **New Features:** @@ -5,6 +13,7 @@ - Add `Entity` regex group selection - Add option to ignore `Entity` regex pattern in `LLMLabelGenerator.generate` + ### anonipy-0.1.0 (2024-07-16) **Breaking Changes:** @@ -29,6 +38,7 @@ - Add automatic date format detection support to `DateGenerator` + ### anonipy-0.0.7 (2024-06-06) **New Features:** @@ -36,6 +46,7 @@ - Upgrade `gliner-spacy` to have cleaner code - Add function to help manual post-anonymization replacement fixing + ### anonipy-0.0.6 (2024-05-31) **New Features:** @@ -43,6 +54,7 @@ - Add GPU support and entity scores to `EntityExtractor` - Standardize the function naming in strategies + ### anonipy-0.0.5 (2024-05-29) **New Features:** @@ -50,6 +62,7 @@ - Re-implement file reading methods + add unit tests - Expland the test environment on all OS + ### anonipy-0.0.4 (2024-05-27) **New Features:** @@ -62,6 +75,7 @@ - Fix the `LANGUAGES` constant + ### anonipy-0.0.3 (2024-05-22) **New features:** @@ -76,6 +90,7 @@ - Fix the entity regex checking in `EntityExtractor` + ### anonipy-0.0.2 (2024-05-22) **New Features:** @@ -83,6 +98,7 @@ - Add `write_file` function - Add blog to the documentation + ### anonipy-0.0.1 (2024-05-21) - Initial release \ No newline at end of file diff --git a/README.md b/README.md index 483efae..2197a53 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ The anonipy package is a python package for data anonymization. It is designed t ## Requirements Before starting the project make sure these requirements are available: -- [python]. The python programming language (v3.8, v3.9, v3.10, v3.11). +- [python]. The python programming language (v3.8, v3.9, v3.10). ## Install diff --git a/anonipy/__init__.py b/anonipy/__init__.py index 444ec50..41efa1b 100644 --- a/anonipy/__init__.py +++ b/anonipy/__init__.py @@ -13,7 +13,7 @@ """ -__version__ = "0.1.1" +__version__ = "0.1.2" from . import anonymize from . import utils diff --git a/pyproject.toml b/pyproject.toml index c64025e..828db80 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,6 @@ classifiers = [ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Topic :: Scientific/Engineering :: Artificial Intelligence"