Skip to content

Commit 4afd0d4

Browse files
committed
release 1.0.1
1 parent 79812bb commit 4afd0d4

File tree

6 files changed

+19
-9
lines changed

6 files changed

+19
-9
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
[![Build Status](https://travis-ci.org/stephenhky/PyShortTextCategorization.svg?branch=master)](https://travis-ci.org/stephenhky/PyShortTextCategorization)
44

5-
[![Documentation Status](//readthedocs.org/projects/shorttext/badge/?version=latest)](https://shorttext.readthedocs.io/en/latest/?badge=latest)
6-
75
## Introduction
86

97
This package `shorttext` is a Python package that facilitates supervised and unsupervised
@@ -69,13 +67,14 @@ If you would like to contribute, feel free to submit the pull requests. You can
6967
* Documentation: [http://shorttext.readthedocs.io](http://shorttext.readthedocs.io/)
7068
* Github: [https://github.com/stephenhky/PyShortTextCategorization](https://github.com/stephenhky/PyShortTextCategorization)
7169
* PyPI: [https://pypi.org/project/shorttext/](https://pypi.org/project/shorttext/)
72-
* "Short Text Mining using Advanced Keras Layers and Maxent: shorttext 0.4.1," [WordPress](https://datawarrior.wordpress.com/2017/07/30/short-text-mining-using-advanced-keras-layers-and-maxent-shorttext-0-4-1/)
70+
* "Package shorttext 1.0.0 released," [Medium](https://medium.com/@stephenhky/package-shorttext-1-0-0-released-ca3cb24d0ff3)
7371
* "Python Package for Short Text Mining", [WordPress](https://datawarrior.wordpress.com/2016/12/22/python-package-for-short-text-mining/)
7472
* "Document-Term Matrix: Text Mining in R and Python," [WordPress](https://datawarrior.wordpress.com/2018/01/22/document-term-matrix-text-mining-in-r-and-python/)
7573
* An [earlier version](https://github.com/stephenhky/PyShortTextCategorization/tree/b298d3ce7d06a9b4e0f7d32f27bab66064ba7afa) of this repository is a demonstration of the following blog post: [Short Text Categorization using Deep Neural Networks and Word-Embedding Models](https://datawarrior.wordpress.com/2016/10/12/short-text-categorization-using-deep-neural-networks-and-word-embedding-models/)
7674

7775
## News
7876

77+
* 07/17/2018: `shorttext` 1.0.1 released.
7978
* 07/14/2018: `shorttext` 1.0.0 released.
8079
* 06/18/2018: `shorttext` 0.7.2 released.
8180
* 05/30/2018: `shorttext` 0.7.1 released.
@@ -110,4 +109,5 @@ If you would like to contribute, feel free to submit the pull requests. You can
110109
## Possible Future Updates
111110

112111
- [ ] Jupyter notebooks as tutorials;
112+
- [ ] Compatibility with Python 3.7;
113113
- [ ] More available corpus.

apidocs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
# The short X.Y version.
6161
version = '1.0'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '1.0.0'
63+
release = '1.0.1'
6464

6565
# The language for content autogenerated by Sphinx. Refer to documentation
6666
# for a list of supported languages.

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
# The short X.Y version.
5959
version = u'1.0'
6060
# The full version, including alpha/beta/rc tags.
61-
release = u'1.0.0'
61+
release = u'1.0.1'
6262

6363
# The language for content autogenerated by Sphinx. Refer to documentation
6464
# for a list of supported languages.

docs/links.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ Blog Entries
6666
<https://datawarrior.wordpress.com/2017/09/08/release-of-shorttext-0-5-4/>`_]
6767

6868
"Document-Term Matrix: Text Mining in R and Python," *Everything About Data Analytics*, WordPress (2018). [`WordPress
69-
https://datawarrior.wordpress.com/2018/01/22/document-term-matrix-text-mining-in-r-and-python/`_]
69+
<https://datawarrior.wordpress.com/2018/01/22/document-term-matrix-text-mining-in-r-and-python/>`_]
70+
71+
"Package shorttext 1.0.0 Released," Medium (2018). [`Medium
72+
<https://medium.com/@stephenhky/package-shorttext-1-0-0-released-ca3cb24d0ff3>`_]
7073

7174
Home: :doc:`index`

docs/news.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
News
22
====
33

4+
* 07/17/2018: `shorttext` 1.0.1 released.
45
* 07/14/2018: `shorttext` 1.0.0 released.
56
* 06/18/2018: `shorttext` 0.7.2 released.
67
* 05/30/2018: `shorttext` 0.7.1 released.
@@ -36,6 +37,11 @@ News
3637
What's New
3738
----------
3839

40+
Release 1.0.1 (July 14, 2018)
41+
-----------------------------
42+
43+
* Minor bugs fixed.
44+
3945
Release 1.0.0 (July 14, 2018)
4046
-----------------------------
4147

setup.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,26 @@
99
except ImportError:
1010
ext_modules = [Extension('_dldist', 'shorttext/metrics/dynprog/dldist.c'),
1111
Extension('_lcp', 'shorttext/metrics/dynprog/lcp.c'),
12-
Extension('_edits1_comb', 'shorttext/spell/edits_comb.c')]
12+
Extension('_edits1_comb', 'shorttext/spell/edits1_comb.c')]
1313

1414
def readme():
1515
with open('README.md') as f:
1616
return f.read()
1717

1818
setup(name='shorttext',
19-
version="1.0.0",
19+
version="1.0.1",
2020
description="Short Text Mining",
2121
long_description="Short text mining algorithms, involving word-embedding models, topic models, edit distances, Word Mover's distance, deep learning etc.",
2222
classifiers=[
2323
"Topic :: Scientific/Engineering :: Artificial Intelligence",
24-
"Natural Language :: English",
2524
"Topic :: Scientific/Engineering :: Mathematics",
2625
"Programming Language :: Python :: 2.7",
2726
"Programming Language :: Python :: 3.5",
2827
"Programming Language :: Python :: 3.6",
2928
"Programming Language :: Cython",
3029
"Programming Language :: C",
30+
"Natural Language :: English",
31+
"Topic :: Text Processing",
3132
"License :: OSI Approved :: MIT License",
3233
],
3334
keywords="shorttext natural language processing text mining",

0 commit comments

Comments
 (0)