Skip to content

Commit

Permalink
Publish release
Browse files Browse the repository at this point in the history
  • Loading branch information
lit26 committed Jun 18, 2022
1 parent 0c674e2 commit 3ae341c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Tianning Li'

# The full version, including alpha/beta/rc tags
release = '0.14.2'
release = '0.14.3'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion finvizfinance/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
.. moduleauthor:: Tianning Li <[email protected]>
"""

__version__ = "0.14.2"
__version__ = "0.14.3"
__author__ = "Tianning Li"
2 changes: 1 addition & 1 deletion finvizfinance/insider.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def get_insider(self):
Returns:
df(pandas.DataFrame): insider information table
"""
insider_trader = self.soup.find("table", class_="body-table w-full")
insider_trader = self.soup.find("table", class_="body-table")
rows = insider_trader.findAll("tr")
table_header = [i.text.strip() for i in rows[0].findAll("td")] + [
"SEC Form 4 Link"
Expand Down
1 change: 1 addition & 0 deletions release.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
| Date | Version | Comment |
| ------------- | ------------- | ------------- |
| 2022/06/18 | 0.14.3 | Fix insider. Issue: [#54](https://github.com/lit26/finvizfinance/issues/54) |
| 2022/06/13 | 0.14.2 | Fix deprecated pandas append function. Issue: [#55](https://github.com/lit26/finvizfinance/issues/55). PR: [#56](https://github.com/lit26/finvizfinance/pull/56)
| 2022/05/06 | 0.14.1 | Update error message and fundamental output. [#53](https://github.com/lit26/finvizfinance/pull/53). |
| 2022/03/29 | 0.14.0 | Update package internal. [#50](https://github.com/lit26/finvizfinance/pull/50). |
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

HERE = pathlib.Path(__file__).parent

VERSION = '0.14.2'
VERSION = '0.14.3'
PACKAGE_NAME = 'finvizfinance'
AUTHOR = 'Tianning Li'
AUTHOR_EMAIL = '[email protected]'
Expand Down

0 comments on commit 3ae341c

Please sign in to comment.