From c50199a79fe1dc8298759c79bd054f0d794a8b57 Mon Sep 17 00:00:00 2001 From: Yunseong Hwang Date: Wed, 2 Feb 2022 07:34:45 +0900 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.6.2=20=E2=86=92=200.7.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- koapy/__init__.py | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index fbe18a05..f423e1e9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.2 +current_version = 0.7.0 commit = True tag = True parse = (?P\d+)(\.(?P\d+))?(\.(?P\d+))?((?P(a|b|rc))(?P
\d+))?(\.post(?P\d+))?(\.dev(?P\d+))?(\+(?P.+))?
diff --git a/koapy/__init__.py b/koapy/__init__.py
index cd3a8c33..b0452c80 100644
--- a/koapy/__init__.py
+++ b/koapy/__init__.py
@@ -2,7 +2,7 @@
 
 __author__ = """Yunseong Hwang"""
 __email__ = "kika1492@gmail.com"
-__version__ = "0.6.2"
+__version__ = "0.7.0"
 
 from typing import TYPE_CHECKING
 
diff --git a/pyproject.toml b/pyproject.toml
index 7b24a585..e28161b5 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "koapy"
-version = "0.6.2"
+version = "0.7.0"
 description = "Kiwoom Open Api Plus Python"
 license = "MIT OR Apache-2.0 OR GPL-3.0-or-later"
 authors = ["Yunseong Hwang "]
diff --git a/setup.py b/setup.py
index 68ebcfa9..9703f7bb 100644
--- a/setup.py
+++ b/setup.py
@@ -110,6 +110,6 @@
     include_package_data=True,
     test_suite="tests",
     url="https://github.com/elbakramer/koapy",
-    version="0.6.2",
+    version="0.7.0",
     zip_safe=False,
 )