Skip to content

Commit 0334ece

Browse files
authored
Merge pull request #124 from lucasrodes/release/0.5.0
Release/0.5.0
2 parents 3bd30d7 + 002e4d8 commit 0334ece

File tree

6 files changed

+5
-8
lines changed

6 files changed

+5
-8
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.5.0.rc0
2+
current_version = 0.5.0.rc1
33
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(.(?P<pre>[a-z]+)(?P<prenum>\d+))?
44
serialize =
55
{major}.{minor}.{patch}.{pre}{prenum}

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,6 @@ jobs:
4343
- ln -s /c/Python38/python.exe /c/Python38/python3.exe
4444
- stage: deploy
4545
python: 3.8
46-
before_deploy:
47-
- python3 -m pip install cibuildwheel==1.11.0
48-
- python3 -m cibuildwheel --output-dir wheelhouse
4946
deploy:
5047
- provider: pypi
5148
user: $USER_PYPI

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</h1>
66
<p align="left">
77
<a href="#">
8-
<img alt="Package version" src="https://img.shields.io/badge/pypi-0.5.0.rc0-blue.svg?&color=25D366&logo=whatsapp&">
8+
<img alt="Package version" src="https://img.shields.io/badge/pypi-0.5.0.rc1-blue.svg?&color=25D366&logo=whatsapp&">
99
</a>
1010
</p>
1111
<!-- style=for-the-badge -->

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
author = 'lucasrodes'
3131

3232
# The full version, including alpha/beta/rc tags
33-
version = 'v0.5.0.rc0'
33+
version = 'v0.5.0.rc1'
3434

3535

3636
# -- General configuration ---------------------------------------------------

setup.py

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

4646
setup(
4747
name='whatstk',
48-
version="0.5.0.rc0",
48+
version="0.5.0.rc1",
4949
description="Parser and analytics tools for WhatsApp group chats",
5050
long_description=long_description,
5151
long_description_content_type='text/markdown',

whatstk/__init__.py

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

1313
name = "whatstk"
1414

15-
__version__ = "0.5.0.rc0"
15+
__version__ = "0.5.0.rc1"
1616

1717
__all__ = [
1818
'WhatsAppChat',

0 commit comments

Comments
 (0)