Skip to content

Commit 3ef9bdd

Browse files
committed
Add italian pocketsphinx model, bump version
1 parent 97db55c commit 3ef9bdd

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

README.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ To hack on this library, first make sure you have all the requirements listed in
268268

269269
To install/reinstall the library locally, run ``python setup.py install`` in the project `root directory <https://github.com/Uberi/speech_recognition>`__.
270270

271-
Before a release, version tags are created using ``git config gpg.program gpg2 && git config user.signingkey DB45F6C431DE7C2DCD99FF7904882258A4063489 && git tag -s VERSION_GOES_HERE -m "Version VERSION_GOES_HERE"``.
271+
Before a release, the version number is bumped in ``README.rst`` and ``speech_recognition/__init__.py``. Version tags are then created using ``git config gpg.program gpg2 && git config user.signingkey DB45F6C431DE7C2DCD99FF7904882258A4063489 && git tag -s VERSION_GOES_HERE -m "Version VERSION_GOES_HERE"``.
272272

273273
Releases are done by running ``make-release.sh`` to build the Python source packages, sign them, and upload them to PyPI.
274274

@@ -349,11 +349,11 @@ Please report bugs and suggestions at the `issue tracker <https://github.com/Ube
349349

350350
How to cite this library (APA style):
351351

352-
Zhang, A. (2017). Speech Recognition (Version 3.6) [Software]. Available from https://github.com/Uberi/speech_recognition#readme.
352+
Zhang, A. (2017). Speech Recognition (Version 3.7) [Software]. Available from https://github.com/Uberi/speech_recognition#readme.
353353

354354
How to cite this library (Chicago style):
355355

356-
Zhang, Anthony. 2017. *Speech Recognition* (version 3.6).
356+
Zhang, Anthony. 2017. *Speech Recognition* (version 3.7).
357357

358358
Also check out the `Python Baidu Yuyin API <https://github.com/DelightRun/PyBaiduYuyin>`__, which is based on an older version of this project, and adds support for `Baidu Yuyin <http://yuyin.baidu.com/>`__. Note that Baidu Yuyin is only available inside China.
359359

reference/pocketsphinx.rst

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ By default, SpeechRecognition's Sphinx functionality supports only US English. A
88

99
* `International French <https://drive.google.com/open?id=0Bw_EqP-hnaFNN2FlQ21RdnVZSVE>`__
1010
* `Mandarin Chinese <https://drive.google.com/open?id=0Bw_EqP-hnaFNSWdqdm5maWZtTGc>`__
11+
* `Italian <https://drive.google.com/open?id=0Bw_EqP-hnaFNSXUtMm8tRkdUejg>`__
1112

1213
To install a language pack, download the ZIP archives and extract them directly into the module install directory (you can find the module install directory by running ``python -c "import speech_recognition as sr, os.path as p; print(p.dirname(sr.__file__))"``).
1314

speech_recognition/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import uuid
2222

2323
__author__ = "Anthony Zhang (Uberi)"
24-
__version__ = "3.6.5"
24+
__version__ = "3.7.0"
2525
__license__ = "BSD"
2626

2727
try: # attempt to use the Python 2 modules

0 commit comments

Comments
 (0)