diff --git a/README.md b/README.md index 9b245ad..70886ee 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,10 @@ Features: --------- - List all currency rates. - Get historical rates for any day since 1999. -- Conversion rate for one Currency(ex; USD to INR). +- Conversion rate for one currency(ex; USD to INR). - Convert amount from one currency to other.('USD 10$' to INR) +- Currency symbols +- Currency names Currency Source: --------------- diff --git a/docs/source/conf.py b/docs/source/conf.py index 3297893..eb29af8 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -59,9 +59,9 @@ # built documents. # # The short X.Y version. -version = u'0.1' +version = u'0.2.3' # The full version, including alpha/beta/rc tags. -release = u'0.1' +release = u'0.2.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/source/index.rst b/docs/source/index.rst index ea3fb16..661a8b1 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -7,8 +7,10 @@ Features: --------- - List all currency rates. - Get historical rates for any day since 1999. -- Conversion rate for one Currency(ex; USD to INR). +- Conversion rate for one currency(ex; USD to INR). - Convert amount from one currency to other.('USD 10$' to INR) +- Currency Symbols +- Currency names Contents: diff --git a/docs/source/usage.rst b/docs/source/usage.rst index ac8a6cb..c9a6a5b 100644 --- a/docs/source/usage.rst +++ b/docs/source/usage.rst @@ -35,7 +35,7 @@ Currency Rates >>> c.convert('USD', 'INR', 10, date_obj) 585.09 -Currency Symboles & Codes +Currency Symbols & Codes ------------------------- 1. Get Currency symbol Using currency code:: >>> from forex_python.converter import CurrencyCodes diff --git a/setup.py b/setup.py index a69ab82..fb1d48d 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import os from setuptools import setup, find_packages -VERSION = '0.2.2' +VERSION = '0.2.3' with io.open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding='utf-8', errors='ignore') as readme: LONG_DESCRIPTION = readme.read()