Skip to content

Commit

Permalink
Bump package version, 0.7.1 => 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bdewilde committed Jul 14, 2019
1 parent 953c116 commit 941ae19
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Changes

### 0.8.0 (in development)
### 0.8.0 (2019-07-14)

#### New and Changed:

Expand All @@ -23,13 +23,14 @@
- Improved speed of SGRank implementation, and generally optimized much of the code
- **Improved document similarity functionality**
- Added a character ngram-based similarity measure (`similarity.character_ngrams()`), for something that's useful in different contexts than the other measures
- Removed Jaro-Winkler string similarity measure (`similarity.jaro_winkler()`), since it didn't really add anything beyond other measures
- Removed Jaro-Winkler string similarity measure (`similarity.jaro_winkler()`), since it didn't add much beyond other measures
- Improved speed of Token Sort Ratio implementation
- Replaced `python-levenshtein` dependency with `jellyfish`, for its active development, better documentation, and actually-compliant license
- Replaced `python-levenshtein` dependency with `jellyfish`, for its active development, better documentation, and _actually-compliant_ license
- **Added customizability to certain functionality**
- Added options to `Doc._.to_bag_of_words()` and `Corpus.word_counts()` for optionally filtering out stop words, punctuation, and/or numbers (PR #249)
- Added options to `Doc._.to_bag_of_words()` and `Corpus.word_counts()` for filtering out stop words, punctuation, and/or numbers (PR #249)
- Allowed for objects that _look like_ `sklearn`-style topic modeling classes to be passed into `tm.TopicModel()` (PR #248)
- Added options to customize rc params used by `matplotlib` when drawing a "termite" plot in `viz.draw_termite_plot()` (PR #248)
- Removed deprecated functions with direct replacements: `io.utils.get_filenames()` and `spacier.components.merge_entities()`

#### Contributors:

Expand Down
2 changes: 1 addition & 1 deletion textacy/about.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.7.1"
__version__ = "0.8.0"
__description__ = "NLP, before and after spaCy"
__url__ = "https://github.com/chartbeat-labs/textacy"
__download_url__ = "https://pypi.org/project/textacy"
Expand Down

0 comments on commit 941ae19

Please sign in to comment.