Skip to content

Commit

Permalink
Increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
eriknovak committed Jul 23, 2024
1 parent 447844a commit 15f7019
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
### 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:**

- Add `Entity` regex group selection
- Add option to ignore `Entity` regex pattern in `LLMLabelGenerator.generate`


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

**Breaking Changes:**
Expand All @@ -29,27 +38,31 @@

- Add automatic date format detection support to `DateGenerator`


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

**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:**
Expand All @@ -62,6 +75,7 @@

- Fix the `LANGUAGES` constant


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

**New features:**
Expand All @@ -76,13 +90,15 @@

- 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


### anonipy-0.0.1 (2024-05-21)

- Initial release
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

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.1"
__version__ = "0.1.2"

from . import anonymize
from . import utils
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 15f7019

Please sign in to comment.