From 233a2c2bc21637f3789bdedc6bdc7d5f78b4b4d7 Mon Sep 17 00:00:00 2001 From: Alvaro Bartolome Date: Sun, 21 Feb 2021 20:53:06 +0100 Subject: [PATCH] updated to 1.0.3 bug fix version --- docs/source/_info/installation.rst | 2 +- docs/source/conf.py | 2 +- investpy/__init__.py | 2 +- setup.py | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/source/_info/installation.rst b/docs/source/_info/installation.rst index 176c504f..14a785bd 100644 --- a/docs/source/_info/installation.rst +++ b/docs/source/_info/installation.rst @@ -5,7 +5,7 @@ Installation .. note:: - After installing the package you are now available to use it! As investpy's latest release is 1.0.2 the installation is + After installing the package you are now available to use it! As investpy's latest release is 1.0.3 the installation is optimized for it. If you try installing another investpy release, some features may not work. First Installation diff --git a/docs/source/conf.py b/docs/source/conf.py index fa163525..f3b48618 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,7 @@ author = 'Alvaro Bartolome del Canto' # The full version, including alpha/beta/rc tags -release = '1.0.2' +release = '1.0.3' # -- General configuration --------------------------------------------------- diff --git a/investpy/__init__.py b/investpy/__init__.py index 3a9b7924..f8977a83 100644 --- a/investpy/__init__.py +++ b/investpy/__init__.py @@ -2,7 +2,7 @@ # See LICENSE for details. __author__ = 'Alvaro Bartolome @ alvarobartt in GitHub' -__version__ = '1.0.2' +__version__ = '1.0.3' from .stocks import get_stocks, get_stocks_list, get_stocks_dict, get_stock_countries, get_stock_recent_data, \ get_stock_historical_data, get_stock_company_profile, get_stock_dividends, get_stock_information, get_stocks_overview, \ diff --git a/setup.py b/setup.py index c0bbeee5..52ab94a7 100644 --- a/setup.py +++ b/setup.py @@ -20,10 +20,10 @@ def requirements(filename): setup( name='investpy', - version='1.0.2', + version='1.0.3', packages=find_packages(), url='https://investpy.readthedocs.io/', - download_url='https://github.com/alvarobartt/investpy/archive/1.0.2.tar.gz', + download_url='https://github.com/alvarobartt/investpy/archive/1.0.3.tar.gz', license='MIT License', author='Alvaro Bartolome', author_email='alvarobdc@yahoo.com',