Skip to content

Commit

Permalink
Bump version 0.7.0-dev -> 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sloria committed Sep 25, 2013
1 parent a45d228 commit 609c4ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Changelog
=========

0.7.0 (unreleased)
0.7.0 (2013-09-25)
------------------
- Wordnet integration. ``Word`` objects have ``synsets`` and ``definitions`` properties. The ``text.wordnet`` module allows you to create ``Synset`` and ``Lemma`` objects directly.
- Move all English-specific code to its own module, ``text.en``.
- Basic extensions framework in place. TextBlob has been refactored to make it easier to develop extensions.
- Add ``text.classifiers.PositiveNaiveBayesClassifier``.
- Update NLTK.
- Fix ``__str__`` behavior. ``print blob`` should now print expected output in both Python 2 and 3.
- Fix ``__str__`` behavior. ``print(blob)`` should now print non-ascii text correctly in both Python 2 and 3.
- *Backwards-incompatible*: All abstract base classes have been moved to the ``text.base`` module.
- *Backwards-incompatible*: ``PerceptronTagger`` will now be maintained as an extension, ``textblob-aptagger``. Instantiating a ``text.taggers.PerceptronTagger()`` will raise a ``DeprecationWarning``.

Expand Down
2 changes: 1 addition & 1 deletion text/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

__version__ = '0.7.0-dev'
__version__ = '0.7.0'
__license__ = 'MIT'
__author__ = "Steven Loria"

Expand Down

0 comments on commit 609c4ae

Please sign in to comment.