diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fa41d3e2d..6d36585cf 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,22 @@ Change Log =========== +0.2.39 +------ +Fixes: +- Fix switching session from/to requests_cache #1930 +Price repair: +- Fix potential for price repair to discard price=0 rows #1874 +- Don't price-repair FX volume=0, is normal #1920 +- Improve 'sudden change' repair for splits & currency #1931 +Information: +- Fix help(yf.download) not showing the information about the function #1913 @vittoboa +- Add more specific error throwing based on PR 1918 #1928 @elibroftw @marcofognog +Maintenance: +- Replace dead 'appdirs' package with 'platformdirs' #1896 +- Deprecate 'pandas_datareader', remove a deprecated argument #1897 +- Fix: datetime.datetime.utcnow() is deprecated ... #1922 + 0.2.38 ------ Fix holders & insiders #1908 diff --git a/meta.yaml b/meta.yaml index de00e411d..32b1d6349 100644 --- a/meta.yaml +++ b/meta.yaml @@ -1,5 +1,5 @@ {% set name = "yfinance" %} -{% set version = "0.2.38" %} +{% set version = "0.2.39" %} package: name: "{{ name|lower }}" diff --git a/yfinance/version.py b/yfinance/version.py index 1c1f34a3b..aaf6a05f7 100644 --- a/yfinance/version.py +++ b/yfinance/version.py @@ -1 +1 @@ -version = "0.2.38" +version = "0.2.39"