From 56c617c5664d354593d8eb6a63246f4ffbc28d12 Mon Sep 17 00:00:00 2001 From: Santiago Ramirez Date: Sun, 17 Dec 2023 13:08:24 -0400 Subject: [PATCH] refactor: bump version --- pyproject.toml | 2 +- quotexpy/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 720d99b..587af42 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "quotexpy" -version = "1.40.3+2" +version = "1.40.4" description = "šŸ“ˆ QuotexPy is a library to easily interact with qxbroker." authors = [ "Santiago Ramirez ", diff --git a/quotexpy/__init__.py b/quotexpy/__init__.py index 81e0e6e..1668ac1 100644 --- a/quotexpy/__init__.py +++ b/quotexpy/__init__.py @@ -25,7 +25,7 @@ def truncate(f, n): class Quotex(object): - __version__ = "1.40.3+2" + __version__ = "1.40.4" def __init__(self, email, password): self.size = [ diff --git a/setup.py b/setup.py index 25a7d08..b6f0df0 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ setup_kwargs = { "name": "quotexpy", - "version": "1.40.3+2", + "version": "1.40.4", "description": "šŸ“ˆ QuotexPy is a library to easily interact with qxbroker.", "long_description": '
\n\n\n## \n\n\n**šŸ“ˆ QuotexPy is a library to easily interact with qxbroker.**\n\n______________________________________________________________________\n\n[![License](https://img.shields.io/badge/License-LGPL--2.1-magenta.svg)](https://www.gnu.org/licenses/gpl-3.0.txt)\n[![PyPI version](https://badge.fury.io/py/quotexpy.svg)](https://badge.fury.io/py/quotexpy)\n![GithubActions](https://github.com/SantiiRepair/quotexpy/actions/workflows/pylint.yml/badge.svg)\n\n
\n\n______________________________________________________________________\n\n## Installing\n\nšŸ“ˆ QuotexPy is tested on Ubuntu 18.04 and Windows 10 with **Python >= 3.10, <= 3.12.**\n```bash\npip install quotexpy\n```\n\nIf you plan to code and make changes, clone and install it locally.\n\n```bash\ngit clone https://github.com/SantiiRepair/quotexpy.git\npip install -e .\n```\n\n## Import\n```python\nfrom quotexpy import Quotex\n```\n\n## Examples\nFor examples check out [some](https://github.com/SantiiRepair/quotexpy/blob/main/example/main.py) found in the `example` directory.\n\n## Donations\nIf you feel like showing your love and/or appreciation for this project, then how about shouting us a coffee ;)\n\n[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/SantiiRepair)\n\n## Acknowledgements\n- Thanks to [@cleitonleonel](https://github.com/cleitonleonel) for the initial base implementation of the project šŸ”„\n- Thanks to [@ricardospinoza](https://github.com/ricardospinoza) for solving the `trade` error in the code šŸš€\n\n## Notice \nThis project is a clone of the [original](https://github.com/cleitonleonel/pyquotex) project, because the original project was discontinued, I updated it with the help of [collaborators](https://github.com/SantiiRepair/quotexpy/graphs/contributors) in the community so that it is accessible to everyone.\n', "author": "Santiago Ramirez",