Breaking changes
- Renamed all transforms. (please see a list of augmentations in README.md)
- Renamed `*_probability` parameter to `*_prob`.
Bug fixes
- Added `typing-extension` in install requirements.
New augmentations
- [`AEDA`](https://github.com/Jaesu26/textmentations/blob/v0.0.3/textmentations/augmentations/transforms.py#L12) - Randomly inserts punctutaions in the input text.
- [`RandomInsertion`](https://github.com/Jaesu26/textmentations/blob/v0.0.3/textmentations/augmentations/transforms.py#L199) - Repeats n times the task of randomly inserting synonyms in the input text.
Minor changes
- The punctuation marks in the text only treat periods.
- All transforms now deal only with synonyms of words that are not stop words.
- Improved type annotation.