Skip to content

Commit d7f8f78

Browse files
committed
📢 bump to v1.1.0 stable release, add documentation in changelog
1 parent 51798b6 commit d7f8f78

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,18 @@ changelogs are as follows:
4646
* ⚙️ - **Code Efficiency** : an existing feature now may not require as much computation or memory.
4747
* 💣 - **Code Refactoring** : a breakable change often associated with `major` version bump.
4848

49-
### Version 1.0.0
49+
### Version 1.1.0 | Stable Release, Release Date - 29-07-2024
5050

5151
We're pleased to annouce the first major release and preview-built for **`pandaswizard`**! This version mainly focuses on enduser
5252
feedback and basic setup for the module.
5353

54-
### Version 1.1.0 | WIP
54+
The modules **`pandas-wizard`** was developed as an initiative to provide additional functionalities on top of
55+
[`pandas`](https://github.com/pandas-dev/pandas). [I've](https://github.com/ZenithClown) spent years in developing projects involing the
56+
use of `pandas` and have always used snippets or redundant [GitHub Gists](https://gist.github.com/ZenithClown) to keep track of additional
57+
functionalities that can be used alongside. Later, decided to compile some of the code snippets directly into one file and publish the
58+
same as an package in [PyPI/pandas-wizard](https://pypi.org/project/pandas-wizard/).
5559

56-
Moveing from `alpha` release to `stable` release. The following features are updated for the release as below:
60+
Moving from `alpha` release to `stable` release. The following features are updated for the release as below:
5761

5862
* 🎉 Added a wrapper function [`timeit`](./pandaswizard/wrappers.py) to print executed time for a function
5963
that returns a pandas dataframe object.
@@ -62,7 +66,7 @@ Moveing from `alpha` release to `stable` release. The following features are upd
6266
* 🎉 Introduced a new module [`window`](./pandaswizard/window.py) which acts as a wrapper to the
6367
[pd.DataFrame.rolling()](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.rolling.html) function.
6468

65-
### Version 1.1.0a0 | Release Date: 21.04.2024
69+
#### Version 1.1.0a0 | Release Date: 21.04.2024
6670

6771
Moving from `development` release to `alpha` testing release, the version brings the additional new features and/or enhancements for
6872
the module:
@@ -73,7 +77,7 @@ the module:
7377
* 🎉📃 Basic code documentation is now available, hosted using
7478
[readthedocs/pandas-wizard](https://pandas-wizard.readthedocs.io/en/latest/index.html)
7579

76-
### Version 1.1.0.dev0 | Release Date: 20.04.2024
80+
#### Version 1.1.0.dev0 | Release Date: 20.04.2024
7781

7882
Major enhancement of the preview built, also created an favicon and logo for the project. The logo is modified from the original
7983
pandas logo.

pandaswizard/__init__.py

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

1818
# ? package follows https://peps.python.org/pep-0440/
1919
# ? https://python-semver.readthedocs.io/en/latest/advanced/convert-pypi-to-semver.html
20-
__version__ = "1.1.0a0"
20+
__version__ = "1.1.0"
2121

2222
# init-time options registrations
2323
from pandaswizard.aggregate import (

0 commit comments

Comments
 (0)