Skip to content

Commit

Permalink
Release Version 5.6
Browse files Browse the repository at this point in the history
- Updated Documentation for 5.6
- Updated Changelog for 5.6
  • Loading branch information
VarunS2002 committed Oct 16, 2024
1 parent 41c7cd9 commit 16f58fd
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 2 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,34 @@

<br>

> # [5.6](https://github.com/VarunS2002/Python-NSE-Option-Chain-Analyzer/releases/tag/5.6)
## Bug Fix Update

- Bug Fixes:
- Fixed `JSONDecodeError` caused by the server now using a different encoding which requires the `brotli` package to
be to installed to be able to decode.
This is what causes the "Failed to fetch symbols. The program will exit now exit." error.
Issue: [#62](https://github.com/VarunS2002/Python-NSE-Option-Chain-Analyzer/issues/62)
, [#65](https://github.com/VarunS2002/Python-NSE-Option-Chain-Analyzer/issues/65)
, [#69](https://github.com/VarunS2002/Python-NSE-Option-Chain-Analyzer/issues/69)
, [#70](https://github.com/VarunS2002/Python-NSE-Option-Chain-Analyzer/issues/70)
- Fixed `TypeError` caused by breaking change in the newer versions of `tksheet`.
Issue: [#64](https://github.com/VarunS2002/Python-NSE-Option-Chain-Analyzer/issues/64)
, [#67](https://github.com/VarunS2002/Python-NSE-Option-Chain-Analyzer/issues/67)
- Fixed potential crash if you try to enable logging while running the `.exe` file
- Code changes:
- Updated request headers
- Minor code improvements
- Updated `requirements.txt`:
- Added `brotli` to library to support decoding data from NSE in the `br` encoding format
- Updated `requests` library version to exclude known vulnerable versions
- Updated `pandas` library version to prevent breaking changes in the future
- Updated documentation:
- Added `brotli` in dependencies

<br>

> # [5.5](https://github.com/VarunS2002/Python-NSE-Option-Chain-Analyzer/releases/tag/5.5)
## Bug Fix Update
Expand Down
2 changes: 1 addition & 1 deletion NSE_Option_Chain_Analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

# noinspection PyAttributeOutsideInit
class Nse:
version: str = '5.5'
version: str = '5.6'

def __init__(self, window: Tk) -> None:
self.intervals: List[int] = [1, 2, 3, 5, 10, 15]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

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

[![Latest: v5.5](https://img.shields.io/badge/release-v5.5-brightgreen)](https://github.com/VarunS2002/Python-NSE-Option-Chain-Analyzer/releases/download/5.5/NSE_Option_Chain_Analyzer_5.5.exe)
[![Latest: v5.6](https://img.shields.io/badge/release-v5.6-brightgreen)](https://github.com/VarunS2002/Python-NSE-Option-Chain-Analyzer/releases/download/5.6/NSE_Option_Chain_Analyzer_5.6.exe)
![Download-Count](https://img.shields.io/github/downloads/VarunS2002/Python-NSE-Option-Chain-Analyzer/total?color=blue)
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)

Expand Down

0 comments on commit 16f58fd

Please # to comment.