From 137d07bd2a8825daa7b82177d086fea4f9b5c7b7 Mon Sep 17 00:00:00 2001 From: Adithya Balaji Date: Sat, 21 Jan 2023 16:32:35 -0800 Subject: [PATCH] Bump version --- docs/changelog.rst | 9 +++++++++ pyproject.toml | 2 +- pyrh/__init__.py | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index d52b041..8a0fb11 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,15 @@ Changelog .. towncrier release notes start +Pyrh 2.1.1 (2023-01-21) +======================= + +Features +-------- + +- Automating MFA authentication using `PyOTP` (#303) + + Pyrh 2.0.1 (2022-11-25) ======================= diff --git a/pyproject.toml b/pyproject.toml index 61cc92a..ec23461 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyrh" -version = "2.0.1" +version = "2.1.1" description = "Unofficial Robinhood Python API" authors = [ "Unofficial Robinhood Python API Developers" diff --git a/pyrh/__init__.py b/pyrh/__init__.py index 43d69b2..cacbf86 100755 --- a/pyrh/__init__.py +++ b/pyrh/__init__.py @@ -4,7 +4,7 @@ from .cache import dump_session, load_session from .robinhood import Robinhood -__version__ = "2.0.1" +__version__ = "2.1.1" __all__ = [ "__version__", "Robinhood",