Skip to content

Commit 6a09907

Browse files
author
Ravi kumar
committed
Merge pull request #13 from ravigadila/symbol
Update Docs with 0.2.3 release
2 parents 33b7683 + 8cb1360 commit 6a09907

5 files changed

Lines changed: 10 additions & 6 deletions

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ Features:
1111
---------
1212
- List all currency rates.
1313
- Get historical rates for any day since 1999.
14-
- Conversion rate for one Currency(ex; USD to INR).
14+
- Conversion rate for one currency(ex; USD to INR).
1515
- Convert amount from one currency to other.('USD 10$' to INR)
16+
- Currency symbols
17+
- Currency names
1618

1719
Currency Source:
1820
---------------

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@
5959
# built documents.
6060
#
6161
# The short X.Y version.
62-
version = u'0.1'
62+
version = u'0.2.3'
6363
# The full version, including alpha/beta/rc tags.
64-
release = u'0.1'
64+
release = u'0.2.3'
6565

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

docs/source/index.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ Features:
77
---------
88
- List all currency rates.
99
- Get historical rates for any day since 1999.
10-
- Conversion rate for one Currency(ex; USD to INR).
10+
- Conversion rate for one currency(ex; USD to INR).
1111
- Convert amount from one currency to other.('USD 10$' to INR)
12+
- Currency Symbols
13+
- Currency names
1214

1315
Contents:
1416

docs/source/usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Currency Rates
3535
>>> c.convert('USD', 'INR', 10, date_obj)
3636
585.09
3737

38-
Currency Symboles & Codes
38+
Currency Symbols & Codes
3939
-------------------------
4040
1. Get Currency symbol Using currency code::
4141
>>> from forex_python.converter import CurrencyCodes

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33
from setuptools import setup, find_packages
44

5-
VERSION = '0.2.2'
5+
VERSION = '0.2.3'
66

77
with io.open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding='utf-8', errors='ignore') as readme:
88
LONG_DESCRIPTION = readme.read()

0 commit comments

Comments
 (0)