Skip to content

Commit 0e3a9a6

Browse files
committed
Release Version 5.4
- Updated Documentation for 5.4 - Updated Changelog for 5.4
1 parent cbe06d6 commit 0e3a9a6

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

CHANGELOG.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

33
<br>
44

5+
> # [5.4](https://github.com/VarunS2002/Python-NSE-Option-Chain-Analyzer/releases/tag/5.4)
6+
7+
## Bug Fix Update
8+
9+
- Fixed `IndexError` with tksheet versions `>=5.0.29`.
10+
Issue: [#24](https://github.com/VarunS2002/Python-NSE-Option-Chain-Analyzer/issues/24)
11+
, [#25](https://github.com/VarunS2002/Python-NSE-Option-Chain-Analyzer/issues/25)
12+
, [#28](https://github.com/VarunS2002/Python-NSE-Option-Chain-Analyzer/issues/28)
13+
, [#32](https://github.com/VarunS2002/Python-NSE-Option-Chain-Analyzer/issues/32)
14+
and [#33](https://github.com/VarunS2002/Python-NSE-Option-Chain-Analyzer/issues/33). Pull
15+
Request: [#34](https://github.com/VarunS2002/Python-NSE-Option-Chain-Analyzer/pull/34) (Thanks
16+
to [@yjagota](https://github.com/yjagota/))
17+
- Fixed redundant code. Pull Request: [#19](https://github.com/VarunS2002/Python-NSE-Option-Chain-Analyzer/pull/19)
18+
(Thanks to [@QuickLearner171998](https://github.com/QuickLearner171998/))
19+
- Bumped dependencies to fix known vulnerabilities
20+
- Updated documentation:
21+
- Added new contributors to the list
22+
- Updated table formatting
23+
- Fixed typos
24+
25+
<br>
26+
527
> # [5.3](https://github.com/VarunS2002/Python-NSE-Option-Chain-Analyzer/releases/tag/5.3)
628
729
## Feature and Bug Fix Update
@@ -230,7 +252,7 @@
230252

231253
- Now compatible with the new NSE website
232254
- Instead of scraping the data from the html the program now calculates the data from a json file which is also the
233-
implementation of the new website (Thanks to @medknecth)
255+
implementation of the new website (Thanks to [@medknecth](https://github.com/medknecth/))
234256
- Since the values on the new website display contracts instead of shares, the values in the program have been updated
235257
to display in thousands instead of lacs
236258
- Completely reworked the main code

NSE_Option_Chain_Analyzer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626

2727
# noinspection PyAttributeOutsideInit
2828
class Nse:
29-
version: str = '5.3'
30-
beta: Tuple[bool, int] = (True, 4)
29+
version: str = '5.4'
30+
beta: Tuple[bool, int] = (False, 0)
3131

3232
def __init__(self, window: Tk) -> None:
3333
self.intervals: List[int] = [1, 2, 3, 5, 10, 15]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## [Downloads](https://github.com/VarunS2002/Python-NSE-Option-Chain-Analyzer/releases)
66

7-
[![Latest: v5.3](https://img.shields.io/badge/release-v5.3-brightgreen)](https://github.com/VarunS2002/Python-NSE-Option-Chain-Analyzer/releases/download/5.3/NSE_Option_Chain_Analyzer_5.3.exe)
7+
[![Latest: v5.4](https://img.shields.io/badge/release-v5.4-brightgreen)](https://github.com/VarunS2002/Python-NSE-Option-Chain-Analyzer/releases/download/5.4/NSE_Option_Chain_Analyzer_5.4.exe)
88
![Download-Count](https://img.shields.io/github/downloads/VarunS2002/Python-NSE-Option-Chain-Analyzer/total?color=blue)
99
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
1010

0 commit comments

Comments
 (0)