Skip to content

Commit

Permalink
Bump version: 2.0.0.alpha3 → 2.0.0.alpha4
Browse files Browse the repository at this point in the history
  • Loading branch information
ldsink committed Jan 25, 2021
1 parent cefb18c commit edb7960
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
files = pyproject.toml wechatpy/__init__.py
commit = True
tag = True
current_version = 2.0.0.alpha3
current_version = 2.0.0.alpha4
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>(alpha|stable))(?P<build>\d+))?
serialize =
serialize =
{major}.{minor}.{patch}.{release}{build}
{major}.{minor}.{patch}

[bumpversion:part:release]
first_value = alpha
optional_value = stable
values =
values =
alpha
stable
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wechatpy"
version = "2.0.0.alpha3"
version = "2.0.0.alpha4"
description = "WeChat SDK for Python"
authors = ["messense <messense@icloud.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion wechatpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from wechatpy.pay import WeChatPay # NOQA
from wechatpy.replies import create_reply # NOQA

__version__ = "2.0.0.alpha3"
__version__ = "2.0.0.alpha4"
__author__ = "messense"

# Set default logging handler to avoid "No handler found" warnings.
Expand Down

0 comments on commit edb7960

Please sign in to comment.