Skip to content

Commit

Permalink
Increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
eriknovak committed Jul 16, 2024
1 parent fe68acf commit 0b964ee
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 8 deletions.
33 changes: 26 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,53 +1,72 @@
### anonipy-0.1.1 (2024-07-16)

**New Features:**
- Add `Entity` regex group selection
- Add option to ignore `Entity` regex pattern in `LLMLabelGenerator.generate`

### anonipy-0.1.0 (2024-07-16)

**Breaking Changes:**
- Rename the `EntityExtractor` to `NERExtractor`
- Rename the input variable `output_gen` to `sub_variant` in `DateGenerator`
- Move the `regex` submodule from `anonipy.anonymize` to `anonipy.utils`

**New Features:**
- Add a pattern extractor named `PatternExtractor`, used to extract entities using spacy pattern matching and regex
- Add a multi extractor named `MultiExtractor`, used to extract entities using multiple extractors
- Add the `DATE_TRANSFORM_VARIANTS` constant to help with date generator
- Refine the `Entity` implementation
- Improve package documentation

**BREAKING changes:**
- Rename the `EntityExtractor` to `NERExtractor`
- Rename the input variable `output_gen` to `sub_variant` in `DateGenerator`
- Move the `regex` submodule from `anonipy.anonymize` to `anonipy.utils`

### anonipy-0.0.8 (2024-06-17)

**New Features:**
- Add automatic date format detection support to `DateGenerator`

### anonipy-0.0.7 (2024-06-06)

- Upgrade gliner-spacy to have cleaner code
**New Features:**
- 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:**
- Add GPU support and entity scores to `EntityExtractor`
- Standardize the function naming in strategies

### anonipy-0.0.5 (2024-05-29)

**New Features:**
- Re-implement file reading methods + add unit tests
- Expland the test environment on all OS

### anonipy-0.0.4 (2024-05-27)

**New Features:**
- Add unit tests
- Fix the `LANGUAGES` constant
- Refine the Entity implementation
- Update documentation

**Bug Fixes:**
- Fix the `LANGUAGES` constant

### anonipy-0.0.3 (2024-05-22)

**New features:**
- Add `read_json` function
- Add `write_json` function
- Add blog post on anonymizing collections of documents
- Fix the entity regex checking in `EntityExtractor`
- Reduce the number of viable suggestions used to create a substitute in `MaskLabelGenerator`
- Add the entity label to the replacements in strategies

**Bug Fixes:**
- Fix the entity regex checking in `EntityExtractor`

### anonipy-0.0.2 (2024-05-22)

**New Features:**
- Add `write_file` function
- Add blog to the documentation

Expand Down
2 changes: 1 addition & 1 deletion anonipy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"""

__version__ = "0.1.0"
__version__ = "0.1.1"

from . import anonymize
from . import utils
Expand Down

0 comments on commit 0b964ee

Please sign in to comment.