Skip to content

Commit

Permalink
Merge pull request #137 from lucasrodes/release/v0.6.2
Browse files Browse the repository at this point in the history
Release/v0.6.2
  • Loading branch information
lucasrodes authored Aug 10, 2023
2 parents fb4339e + 65108bb commit 6941271
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.1
current_version = 0.6.2
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(.(?P<pre>[a-z]+)(?P<prenum>\d+))?
serialize =
{major}.{minor}.{patch}.{pre}{prenum}
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.11"
python: "3.8"

# Build documentation in the docs/ directory with Sphinx
sphinx:
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</h1>
<p align="left">
<a href="#">
<img alt="Package version" src="https://img.shields.io/badge/pypi-0.6.1-blue.svg?&color=25D366&logo=whatsapp&">
<img alt="Package version" src="https://img.shields.io/badge/pypi-0.6.2-blue.svg?&color=25D366&logo=whatsapp&">
</a>
</p>
<!-- style=for-the-badge -->
Expand Down Expand Up @@ -39,6 +39,10 @@

---

**Try the [live demo parser](https://whatstk.streamlit.app/) to convert your chats to CSV**

---

<!-- [![Downloads](https://pepy.tech/badge/whatstk)](https://pepy.tech/project/whatstk) -->
<!-- > [Get the Desktop App](https://lcsrg.me/whatstk-gui) -->

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
author = 'lucasrodes'

# The full version, including alpha/beta/rc tags
version = 'v0.6.1'
version = 'v0.6.2'


# -- General configuration ---------------------------------------------------
Expand Down Expand Up @@ -151,7 +151,7 @@ def setup(app):
}

# -- Args ---------------------------------------------------------------------
html4_writer = True
# html4_writer = True
napoleon_use_rtype = False
autosummary_generate = True

Expand Down
5 changes: 4 additions & 1 deletion docs/source/about.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ About whatstk
using the python library. The package uses `pandas <https://github.com/pandas-dev/pandas>`_ to
process the data and `plotly <https://github.com/plotly/plotly.py>`_ to visualise it.

You can also `try a live demo <https://whatstk.streamlit.app/>`_.


The project is distributed under the `GPL-3.0 license <https://github.com/lucasrodes/whatstk/blob/master/LICENSE>`_
and is available on `GitHub <http://github.com/lucasrodes/whatstk>`_.

Expand Down Expand Up @@ -103,4 +106,4 @@ For more details, refer to the :ref:`contribute section <Contribute>`.
Why this name, whatstk?
-----------------------
whatstk stands for "WhatsApp Toolkit", since the project was initially conceived as a python library to read and process
WhatsApp chats.
WhatsApp chats.
10 changes: 5 additions & 5 deletions requirements-docs.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
recommonmark==0.6.0
Sphinx==3.0.4
Sphinx~=6.2.1
sphinx-rtd-theme==0.4.3
sphinx-copybutton==0.2.11
sphinx-copybutton~=0.5.2
sphinx-git==11.0.0
autodocsumm==0.1.13
autodocsumm~=0.2.11
# gitchangelog==3.0.4
auto-changelog==0.5.1
auto-changelog~=0.6.0
recommonmark==0.6.0
# pillow, psutil, sphinx-gallery
# pillow, psutil, sphinx-gallery
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

setup(
name='whatstk',
version="0.6.1",
version="0.6.2",
description="Parser and analytics tools for WhatsApp group chats",
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down
2 changes: 1 addition & 1 deletion whatstk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

name = "whatstk"

__version__ = "0.6.1"
__version__ = "0.6.2"

__all__ = [
"WhatsAppChat",
Expand Down

0 comments on commit 6941271

Please sign in to comment.