From 5ae6d28e39df792b6f28b04a0faf28bedb369091 Mon Sep 17 00:00:00 2001 From: Debasish Pal <48341250+debpal@users.noreply.github.com> Date: Mon, 9 Sep 2024 19:14:10 +0300 Subject: [PATCH] release version 0.0.2 --- BharatFinTrack/__init__.py | 2 +- docs/changelog.rst | 11 ++++++++++- docs/conf.py | 3 ++- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/BharatFinTrack/__init__.py b/BharatFinTrack/__init__.py index 19f23f7..4fe0e24 100644 --- a/BharatFinTrack/__init__.py +++ b/BharatFinTrack/__init__.py @@ -6,4 +6,4 @@ ] -__version__ = '0.0.1' \ No newline at end of file +__version__ = '0.0.2' \ No newline at end of file diff --git a/docs/changelog.rst b/docs/changelog.rst index 303c260..f8d1f4c 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,15 @@ ============= Release Notes -============= +============= + + +Version 0.0.2 +------------- + +* **Date:** 09-Sep-2024. +* **Bug Fixes:** Some bug fixes. +* **Documentation:** Updated `README.md`. + Version 0.0.1 ------------- diff --git a/docs/conf.py b/docs/conf.py index b2ba7d8..2f9dc32 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,8 @@ author = 'Debasish Pal' # The full version, including alpha/beta/rc tags -release = '0.0.1' +from BharatFinTrack import __version__ +release = __version__ # -- General configuration ---------------------------------------------------