diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7a614077..1d637562 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,20 @@ Change Log =========== +0.2.42 +------ +Features: +- fetch SEC filings #2009 +- fetch analysis #2023 @Fidasek009 +- price repair extended to dividends & adjust #2031 +Fixes: +- fix error on empty options chain #1995 @stevenbischoff +- use dict.get() to safely access key in Holders #2013 @ericpien +- fix datetime conversion with mixed timezones when ignore_tz is False #2016 @mreiche +- handle faulty response object when getting news. #2021 @ericpien +Maintenance: +- prices: improve exceptions and logging #2000 + 0.2.41 ------ Improvements: diff --git a/meta.yaml b/meta.yaml index a2540d0b..147d678e 100644 --- a/meta.yaml +++ b/meta.yaml @@ -1,5 +1,5 @@ {% set name = "yfinance" %} -{% set version = "0.2.41" %} +{% set version = "0.2.42" %} package: name: "{{ name|lower }}" diff --git a/yfinance/version.py b/yfinance/version.py index c99700ed..f9fa20a8 100644 --- a/yfinance/version.py +++ b/yfinance/version.py @@ -1 +1 @@ -version = "0.2.41" +version = "0.2.42"