diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0a5fec6..4fb81f1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ Change Log ========== +2.3.5 +----- +## Fix +- Fix bad assignment to crumb when using username/password for premium access + 2.3.4 ----- ## Update @@ -23,7 +28,7 @@ Change Log 2.3.1 ----- -## FIx +## Fix - Fixes for history method 2.3.0 diff --git a/pyproject.toml b/pyproject.toml index 59a94a6..d58e0c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "yahooquery" -version = "2.3.4" +version = "2.3.5" description = "Python wrapper for an unofficial Yahoo Finance API" authors = ["Doug Guthrie "] documentation = "https://yahooquery.dpguthrie.com" diff --git a/yahooquery/__init__.py b/yahooquery/__init__.py index d70f37d..e66b081 100644 --- a/yahooquery/__init__.py +++ b/yahooquery/__init__.py @@ -1,7 +1,7 @@ """Python interface to unofficial Yahoo Finance API endpoints""" name = "yahooquery" -__version__ = "2.3.4" +__version__ = "2.3.5" from .research import Research # noqa from .ticker import Ticker # noqa