Skip to content

Commit 609c4ae

Browse files
committed
Bump version 0.7.0-dev -> 0.7.0
1 parent a45d228 commit 609c4ae

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

HISTORY.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Changelog
22
=========
33

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

text/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22

3-
__version__ = '0.7.0-dev'
3+
__version__ = '0.7.0'
44
__license__ = 'MIT'
55
__author__ = "Steven Loria"
66

0 commit comments

Comments
 (0)