From d7f8f78b9c79f0cc9c85fec7d8b0370627d58223 Mon Sep 17 00:00:00 2001 From: ZenithClown Date: Tue, 30 Jul 2024 00:07:25 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A2=20bump=20to=20v1.1.0=20stable=20re?= =?UTF-8?q?lease,=20add=20documentation=20in=20changelog?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 14 +++++++++----- pandaswizard/__init__.py | 2 +- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 546f68c..5c66e09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -46,14 +46,18 @@ changelogs are as follows: * ⚙️ - **Code Efficiency** : an existing feature now may not require as much computation or memory. * 💣 - **Code Refactoring** : a breakable change often associated with `major` version bump. -### Version 1.0.0 +### Version 1.1.0 | Stable Release, Release Date - 29-07-2024 We're pleased to annouce the first major release and preview-built for **`pandaswizard`**! This version mainly focuses on enduser feedback and basic setup for the module. -### Version 1.1.0 | WIP +The modules **`pandas-wizard`** was developed as an initiative to provide additional functionalities on top of +[`pandas`](https://github.com/pandas-dev/pandas). [I've](https://github.com/ZenithClown) spent years in developing projects involing the +use of `pandas` and have always used snippets or redundant [GitHub Gists](https://gist.github.com/ZenithClown) to keep track of additional +functionalities that can be used alongside. Later, decided to compile some of the code snippets directly into one file and publish the +same as an package in [PyPI/pandas-wizard](https://pypi.org/project/pandas-wizard/). -Moveing from `alpha` release to `stable` release. The following features are updated for the release as below: +Moving from `alpha` release to `stable` release. The following features are updated for the release as below: * 🎉 Added a wrapper function [`timeit`](./pandaswizard/wrappers.py) to print executed time for a function that returns a pandas dataframe object. @@ -62,7 +66,7 @@ Moveing from `alpha` release to `stable` release. The following features are upd * 🎉 Introduced a new module [`window`](./pandaswizard/window.py) which acts as a wrapper to the [pd.DataFrame.rolling()](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.rolling.html) function. -### Version 1.1.0a0 | Release Date: 21.04.2024 +#### Version 1.1.0a0 | Release Date: 21.04.2024 Moving from `development` release to `alpha` testing release, the version brings the additional new features and/or enhancements for the module: @@ -73,7 +77,7 @@ the module: * 🎉📃 Basic code documentation is now available, hosted using [readthedocs/pandas-wizard](https://pandas-wizard.readthedocs.io/en/latest/index.html) -### Version 1.1.0.dev0 | Release Date: 20.04.2024 +#### Version 1.1.0.dev0 | Release Date: 20.04.2024 Major enhancement of the preview built, also created an favicon and logo for the project. The logo is modified from the original pandas logo. diff --git a/pandaswizard/__init__.py b/pandaswizard/__init__.py index 6594665..23a933c 100644 --- a/pandaswizard/__init__.py +++ b/pandaswizard/__init__.py @@ -17,7 +17,7 @@ # ? package follows https://peps.python.org/pep-0440/ # ? https://python-semver.readthedocs.io/en/latest/advanced/convert-pypi-to-semver.html -__version__ = "1.1.0a0" +__version__ = "1.1.0" # init-time options registrations from pandaswizard.aggregate import (