Skip to content

Commit 526f30c

Browse files
github-actions[bot]github-actions
andauthored
Bump version to 3.4.0 (#515)
Co-authored-by: github-actions <github-actions@github.com>
1 parent 258e3cd commit 526f30c

40 files changed

+565
-35
lines changed

line-openapi

linebot/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"""Meta data of line-bot-sdk."""
1616

1717

18-
__version__ = '3.3.0'
18+
__version__ = '3.4.0'
1919
__author__ = 'LINE Corporation'
2020
__copyright__ = 'Copyright 2016, LINE Corporation'
2121
__license__ = 'Apache 2.0'

linebot/v3/audience/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"""
1515

1616

17-
__version__ = "3.3.0"
17+
__version__ = "3.4.0"
1818

1919
# import apis into sdk package
2020
from linebot.v3.audience.api.manage_audience import ManageAudience

linebot/v3/audience/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7777
self.default_headers['Authorization'] = 'Bearer ' + configuration.access_token
7878
self.cookie = cookie
7979
# Set default User-Agent.
80-
self.user_agent = 'line-bot-sdk-python/3.3.0'
80+
self.user_agent = 'line-bot-sdk-python/3.4.0'
8181
self.client_side_validation = configuration.client_side_validation
8282

8383
def __enter__(self):

linebot/v3/audience/async_api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7777
self.default_headers['Authorization'] = 'Bearer ' + configuration.access_token
7878
self.cookie = cookie
7979
# Set default User-Agent.
80-
self.user_agent = 'line-bot-sdk-python-async/3.3.0'
80+
self.user_agent = 'line-bot-sdk-python-async/3.4.0'
8181
self.client_side_validation = configuration.client_side_validation
8282

8383
async def __aenter__(self):

linebot/v3/audience/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ def to_debug_report(self):
372372
"OS: {env}\n"\
373373
"Python Version: {pyversion}\n"\
374374
"Version of the API: 0.0.1\n"\
375-
"SDK Package Version: 3.3.0".\
375+
"SDK Package Version: 3.4.0".\
376376
format(env=sys.platform, pyversion=sys.version)
377377

378378
def get_host_settings(self):

linebot/v3/insight/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"""
1515

1616

17-
__version__ = "3.3.0"
17+
__version__ = "3.4.0"
1818

1919
# import apis into sdk package
2020
from linebot.v3.insight.api.insight import Insight

linebot/v3/insight/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7777
self.default_headers['Authorization'] = 'Bearer ' + configuration.access_token
7878
self.cookie = cookie
7979
# Set default User-Agent.
80-
self.user_agent = 'line-bot-sdk-python/3.3.0'
80+
self.user_agent = 'line-bot-sdk-python/3.4.0'
8181
self.client_side_validation = configuration.client_side_validation
8282

8383
def __enter__(self):

linebot/v3/insight/async_api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7777
self.default_headers['Authorization'] = 'Bearer ' + configuration.access_token
7878
self.cookie = cookie
7979
# Set default User-Agent.
80-
self.user_agent = 'line-bot-sdk-python-async/3.3.0'
80+
self.user_agent = 'line-bot-sdk-python-async/3.4.0'
8181
self.client_side_validation = configuration.client_side_validation
8282

8383
async def __aenter__(self):

linebot/v3/insight/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ def to_debug_report(self):
372372
"OS: {env}\n"\
373373
"Python Version: {pyversion}\n"\
374374
"Version of the API: 0.0.1\n"\
375-
"SDK Package Version: 3.3.0".\
375+
"SDK Package Version: 3.4.0".\
376376
format(env=sys.platform, pyversion=sys.version)
377377

378378
def get_host_settings(self):

linebot/v3/liff/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"""
1515

1616

17-
__version__ = "3.3.0"
17+
__version__ = "3.4.0"
1818

1919
# import apis into sdk package
2020
from linebot.v3.liff.api.liff import Liff

linebot/v3/liff/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7777
self.default_headers['Authorization'] = 'Bearer ' + configuration.access_token
7878
self.cookie = cookie
7979
# Set default User-Agent.
80-
self.user_agent = 'line-bot-sdk-python/3.3.0'
80+
self.user_agent = 'line-bot-sdk-python/3.4.0'
8181
self.client_side_validation = configuration.client_side_validation
8282

8383
def __enter__(self):

linebot/v3/liff/async_api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7777
self.default_headers['Authorization'] = 'Bearer ' + configuration.access_token
7878
self.cookie = cookie
7979
# Set default User-Agent.
80-
self.user_agent = 'line-bot-sdk-python-async/3.3.0'
80+
self.user_agent = 'line-bot-sdk-python-async/3.4.0'
8181
self.client_side_validation = configuration.client_side_validation
8282

8383
async def __aenter__(self):

linebot/v3/liff/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ def to_debug_report(self):
372372
"OS: {env}\n"\
373373
"Python Version: {pyversion}\n"\
374374
"Version of the API: 1.0\n"\
375-
"SDK Package Version: 3.3.0".\
375+
"SDK Package Version: 3.4.0".\
376376
format(env=sys.platform, pyversion=sys.version)
377377

378378
def get_host_settings(self):

linebot/v3/messaging/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"""
1515

1616

17-
__version__ = "3.3.0"
17+
__version__ = "3.4.0"
1818

1919
# import apis into sdk package
2020
from linebot.v3.messaging.api.messaging_api import MessagingApi

linebot/v3/messaging/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7777
self.default_headers['Authorization'] = 'Bearer ' + configuration.access_token
7878
self.cookie = cookie
7979
# Set default User-Agent.
80-
self.user_agent = 'line-bot-sdk-python/3.3.0'
80+
self.user_agent = 'line-bot-sdk-python/3.4.0'
8181
self.client_side_validation = configuration.client_side_validation
8282

8383
def __enter__(self):

linebot/v3/messaging/async_api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7777
self.default_headers['Authorization'] = 'Bearer ' + configuration.access_token
7878
self.cookie = cookie
7979
# Set default User-Agent.
80-
self.user_agent = 'line-bot-sdk-python-async/3.3.0'
80+
self.user_agent = 'line-bot-sdk-python-async/3.4.0'
8181
self.client_side_validation = configuration.client_side_validation
8282

8383
async def __aenter__(self):

linebot/v3/messaging/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ def to_debug_report(self):
372372
"OS: {env}\n"\
373373
"Python Version: {pyversion}\n"\
374374
"Version of the API: 0.0.1\n"\
375-
"SDK Package Version: 3.3.0".\
375+
"SDK Package Version: 3.4.0".\
376376
format(env=sys.platform, pyversion=sys.version)
377377

378378
def get_host_settings(self):

linebot/v3/module/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"""
1515

1616

17-
__version__ = "3.3.0"
17+
__version__ = "3.4.0"
1818

1919
# import apis into sdk package
2020
from linebot.v3.module.api.line_module import LineModule

linebot/v3/module/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7777
self.default_headers['Authorization'] = 'Bearer ' + configuration.access_token
7878
self.cookie = cookie
7979
# Set default User-Agent.
80-
self.user_agent = 'line-bot-sdk-python/3.3.0'
80+
self.user_agent = 'line-bot-sdk-python/3.4.0'
8181
self.client_side_validation = configuration.client_side_validation
8282

8383
def __enter__(self):

linebot/v3/module/async_api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7777
self.default_headers['Authorization'] = 'Bearer ' + configuration.access_token
7878
self.cookie = cookie
7979
# Set default User-Agent.
80-
self.user_agent = 'line-bot-sdk-python-async/3.3.0'
80+
self.user_agent = 'line-bot-sdk-python-async/3.4.0'
8181
self.client_side_validation = configuration.client_side_validation
8282

8383
async def __aenter__(self):

linebot/v3/module/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ def to_debug_report(self):
372372
"OS: {env}\n"\
373373
"Python Version: {pyversion}\n"\
374374
"Version of the API: 0.0.1\n"\
375-
"SDK Package Version: 3.3.0".\
375+
"SDK Package Version: 3.4.0".\
376376
format(env=sys.platform, pyversion=sys.version)
377377

378378
def get_host_settings(self):

linebot/v3/moduleattach/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"""
1515

1616

17-
__version__ = "3.3.0"
17+
__version__ = "3.4.0"
1818

1919
# import apis into sdk package
2020
from linebot.v3.moduleattach.api.line_module_attach import LineModuleAttach

linebot/v3/moduleattach/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7777
self.default_headers['Authorization'] = 'Bearer ' + configuration.access_token
7878
self.cookie = cookie
7979
# Set default User-Agent.
80-
self.user_agent = 'line-bot-sdk-python/3.3.0'
80+
self.user_agent = 'line-bot-sdk-python/3.4.0'
8181
self.client_side_validation = configuration.client_side_validation
8282

8383
def __enter__(self):

linebot/v3/moduleattach/async_api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7777
self.default_headers['Authorization'] = 'Bearer ' + configuration.access_token
7878
self.cookie = cookie
7979
# Set default User-Agent.
80-
self.user_agent = 'line-bot-sdk-python-async/3.3.0'
80+
self.user_agent = 'line-bot-sdk-python-async/3.4.0'
8181
self.client_side_validation = configuration.client_side_validation
8282

8383
async def __aenter__(self):

linebot/v3/moduleattach/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ def to_debug_report(self):
388388
"OS: {env}\n"\
389389
"Python Version: {pyversion}\n"\
390390
"Version of the API: 0.0.1\n"\
391-
"SDK Package Version: 3.3.0".\
391+
"SDK Package Version: 3.4.0".\
392392
format(env=sys.platform, pyversion=sys.version)
393393

394394
def get_host_settings(self):

linebot/v3/oauth/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"""
1515

1616

17-
__version__ = "3.3.0"
17+
__version__ = "3.4.0"
1818

1919
# import apis into sdk package
2020
from linebot.v3.oauth.api.channel_access_token import ChannelAccessToken
@@ -39,4 +39,5 @@
3939
from linebot.v3.oauth.models.error_response import ErrorResponse
4040
from linebot.v3.oauth.models.issue_channel_access_token_response import IssueChannelAccessTokenResponse
4141
from linebot.v3.oauth.models.issue_short_lived_channel_access_token_response import IssueShortLivedChannelAccessTokenResponse
42+
from linebot.v3.oauth.models.issue_stateless_channel_access_token_response import IssueStatelessChannelAccessTokenResponse
4243
from linebot.v3.oauth.models.verify_channel_access_token_response import VerifyChannelAccessTokenResponse

0 commit comments

Comments
 (0)