diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8459a6062..6565ca051 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,30 @@ Change Log =========== +0.2.34 +------ +Features: +- Add Recommendations Trend Summary #1754 +- Add Recommendation upgrades & downgrades #1773 +- Add Insider Roster & Transactions #1772 +- Moved download() progress bar to STDERR #1776 +- PIP optional dependencies #1771 +- Set sensible min versions for optional 'nospam' reqs #1807 +Fixes +- Fix download() DatetimeIndex on invalid symbols #1779 +- Fix invalid date entering cache DB #1796 +- Fix Ticker.calendar fetch #1790 +- Fixed adding complementary to info #1774 +- Ticker.earnings_dates: fix warning "Value 'NaN' has dtype incompatible with float64" #1810 +- Minor fixes for price repair and related tests #1768 +- Fix price repair div adjust #1798 +- Fix 'raise_errors' argument ignored in Ticker.history() #1806 +Maintenance +- Fix regression: _get_ticker_tz() args were being swapped. Improve its unit test #1793 +- Refactor Ticker proxy #1711 +- Add Ruff linter checks #1756 +- Resolve Pandas FutureWarnings #1766 + 0.2.33 ------ Cookie fixes: diff --git a/meta.yaml b/meta.yaml index 240142573..5d819cf29 100644 --- a/meta.yaml +++ b/meta.yaml @@ -1,5 +1,5 @@ {% set name = "yfinance" %} -{% set version = "0.2.33" %} +{% set version = "0.2.34" %} package: name: "{{ name|lower }}" diff --git a/yfinance/version.py b/yfinance/version.py index 41c258c8a..b76032216 100644 --- a/yfinance/version.py +++ b/yfinance/version.py @@ -1 +1 @@ -version = "0.2.33" +version = "0.2.34"