Skip to content

Commit

Permalink
Bump version: 0.3.5 → 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
elbakramer committed May 13, 2021
1 parent 1c55395 commit 466c534
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[bumpversion]
current_version = 0.3.5
current_version = 0.4.0
commit = True
tag = True
parse = (?P<major>\d+)(\.(?P<minor>\d+))?(\.(?P<patch>\d+))?((?P<cycle>(a|b|rc))(?P<pre>\d+))?(\.post(?P<post>\d+))?(\.dev(?P<dev>\d+))?(\+(?P<local>.+))?
serialize =
serialize =
{major}.{minor}.{patch}{cycle}{pre}.post{post}.dev{dev}+{local}
{major}.{minor}.{patch}{cycle}{pre}.post{post}.dev{dev}
{major}.{minor}.{patch}{cycle}{pre}.post{post}+{local}
Expand All @@ -22,7 +22,7 @@ serialize =
{major}.{minor}.{patch}

[bumpversion:part:cycle]
values =
values =
final
a
b
Expand Down
2 changes: 1 addition & 1 deletion koapy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """Yunseong Hwang"""
__email__ = "kika1492@gmail.com"
__version__ = "0.3.5"
__version__ = "0.4.0"

from koapy.backend.daishin_cybos_plus.core.CybosPlusEntrypoint import (
CybosPlusEntrypoint,
Expand Down
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 = "koapy"
version = "0.3.5"
version = "0.4.0"
description = "Kiwoom Open Api Plus Python"
license = "MIT OR Apache-2.0 OR GPL-3.0-or-later"
authors = ["Yunseong Hwang <kika1492@gmail.com>"]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,6 @@
include_package_data=True,
test_suite="tests",
url="https://github.com/elbakramer/koapy",
version="0.3.5",
version="0.4.0",
zip_safe=False,
)
2 changes: 1 addition & 1 deletion tests/test_koapy.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "0.3.5"
assert __version__ == "0.4.0"

0 comments on commit 466c534

Please sign in to comment.