Skip to content
This repository has been archived by the owner on Jan 13, 2019. It is now read-only.

Commit

Permalink
update to 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jjangsangy committed Dec 8, 2014
1 parent e2d7bbb commit 780f743
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
Release History
=================

0.2.3 (2014-12-08)
-------------------
- Bug fix with double output


0.2.2 (2014-12-07)
-------------------

Expand Down
18 changes: 9 additions & 9 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Installation
From PyPI with pip (easy)
~~~~~~~~~~~~~~~~~~~~~~~~~

.. code-block sh
.. code-block:: sh
$ pip install py-translate
Expand All @@ -43,13 +43,13 @@ From Source at Github

- Clone the repository

.. code-block sh
.. code-block:: sh
$ git clone https://github.com/jjangsangy/py-translate.git
- Install with setup.py

.. code-block sh
.. code-block:: sh
$ python setup.py install
Expand Down Expand Up @@ -85,7 +85,7 @@ Examples

- Default will translate from english to target language

.. code-block sh
.. code-block:: sh
$ translate zh-TW <<< 'Hello World!'
你好世界!
Expand All @@ -98,7 +98,7 @@ Examples
- Just as easily specify a source language by providing it as first
argument

.. code-block sh
.. code-block:: sh
# Translate Hello from French to English
$ translate fr en <<< 'Bonjour, comment allez-vous!'
Expand All @@ -107,7 +107,7 @@ Examples
Redirect from File
~~~~~~~~~~~~~~~~~~

.. code-block sh
.. code-block:: sh
$ translate zh-TW < 'alice.txt'
Expand All @@ -124,7 +124,7 @@ Redirect from File
Chaining together Pipes
~~~~~~~~~~~~~~~~~~~~~~~

.. code-block sh
.. code-block:: sh
# Multiple Chaining
$ echo 'What is love?' | translate zh-TW | translate zh-TW ko | translate ko fr | translate fr en
Expand All @@ -133,7 +133,7 @@ Chaining together Pipes
Be Creative!
~~~~~~~~~~~~

.. code-block sh
.. code-block:: sh
# Grocery List
$ cat << BUY | translate ko
Expand All @@ -153,7 +153,7 @@ Be Creative!
Documentation
-------------
Find the latest documentation http://pythonhosted.org//py-translate/
Find the latest documentation http://pythonhosted.org/py-translate/
.. |Documentation| image:: https://readthedocs.org/projects/py-translate/badge/?version=master
:target: https://readthedocs.org/projects/py-translate/?badge=master
Expand Down
2 changes: 1 addition & 1 deletion translate/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '0.2.2'
__version__ = '0.2.3'
__build__ = 'release'

0 comments on commit 780f743

Please sign in to comment.