From 6b244c5151d221373d6497bd36dc72e078ff7cec Mon Sep 17 00:00:00 2001 From: Tianning Li Date: Fri, 4 Oct 2024 00:16:19 +0800 Subject: [PATCH] add new release --- docs/source/conf.py | 2 +- release.md | 1 + setup.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index ec8055e..649beac 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -15,7 +15,7 @@ copyright = '2024, Tianning Li' author = 'Tianning Li' # The full version, including alpha/beta/rc tags -release = '1.0.1' +release = '1.1.0' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/release.md b/release.md index a55dc5e..c1e85cb 100644 --- a/release.md +++ b/release.md @@ -1,5 +1,6 @@ | Date | Version | Comment | | ---------- | --------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 2024/10/04 | 1.1.0 | Fix Pandas warning. Fix Insider Transactions error. Add source col to ticker_news(). Add image fetch Proxy. Issue: [#116](https://github.com/lit26/finvizfinance/issues/116) [#118](https://github.com/lit26/finvizfinance/issues/118) [#120](https://github.com/lit26/finvizfinance/issues/120). PR: [#119](https://github.com/lit26/finvizfinance/pull/119) [#121](https://github.com/lit26/finvizfinance/pull/121) [#122](https://github.com/lit26/finvizfinance/pull/122) [#123](https://github.com/lit26/finvizfinance/pull/123). | 2024/07/05 | 1.0.1 | Fix custom screener and group. Issue: [#112](https://github.com/lit26/finvizfinance/issues/112). PR: [#113](https://github.com/lit26/finvizfinance/pull/113) | | 2024/06/17 | 1.0.0 | Optimization and fix coding style. Release 1.0.0. | | 2024/05/05 | 1.0.0rc1 | Miscellaneous upgrade. PR: [#105](https://github.com/lit26/finvizfinance/pull/105) | diff --git a/setup.py b/setup.py index 1ef88ca..72219d3 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ HERE = pathlib.Path(__file__).parent -VERSION = '1.0.1' +VERSION = '1.1.0' PACKAGE_NAME = 'finvizfinance' AUTHOR = 'Tianning Li' AUTHOR_EMAIL = 'ltianningli@gmail.com'