Skip to content

Commit b3c174d

Browse files
github-actions[bot]github-actionsYang-33
authored
Bump version to 3.1.0 (#482)
Co-authored-by: github-actions <github-actions@github.com> Co-authored-by: Yuta Kasai <yuta.kasai@linecorp.com>
1 parent 6593a04 commit b3c174d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+1685
-47
lines changed

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.0.3'
18+
__version__ = '3.1.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.0.3"
17+
__version__ = "3.1.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.0.3'
80+
self.user_agent = 'line-bot-sdk-python/3.1.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.0.3'
80+
self.user_agent = 'line-bot-sdk-python-async/3.1.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.0.3".\
375+
"SDK Package Version: 3.1.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.0.3"
17+
__version__ = "3.1.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.0.3'
80+
self.user_agent = 'line-bot-sdk-python/3.1.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.0.3'
80+
self.user_agent = 'line-bot-sdk-python-async/3.1.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.0.3".\
375+
"SDK Package Version: 3.1.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.0.3"
17+
__version__ = "3.1.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.0.3'
80+
self.user_agent = 'line-bot-sdk-python/3.1.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.0.3'
80+
self.user_agent = 'line-bot-sdk-python-async/3.1.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.0.3".\
375+
"SDK Package Version: 3.1.0".\
376376
format(env=sys.platform, pyversion=sys.version)
377377

378378
def get_host_settings(self):

linebot/v3/messaging/__init__.py

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

1616

17-
__version__ = "3.0.3"
17+
__version__ = "3.1.0"
1818

1919
# import apis into sdk package
2020
from linebot.v3.messaging.api.messaging_api import MessagingApi
@@ -130,6 +130,13 @@
130130
from linebot.v3.messaging.models.rich_menu_alias_list_response import RichMenuAliasListResponse
131131
from linebot.v3.messaging.models.rich_menu_alias_response import RichMenuAliasResponse
132132
from linebot.v3.messaging.models.rich_menu_area import RichMenuArea
133+
from linebot.v3.messaging.models.rich_menu_batch_link_operation import RichMenuBatchLinkOperation
134+
from linebot.v3.messaging.models.rich_menu_batch_operation import RichMenuBatchOperation
135+
from linebot.v3.messaging.models.rich_menu_batch_progress_phase import RichMenuBatchProgressPhase
136+
from linebot.v3.messaging.models.rich_menu_batch_progress_response import RichMenuBatchProgressResponse
137+
from linebot.v3.messaging.models.rich_menu_batch_request import RichMenuBatchRequest
138+
from linebot.v3.messaging.models.rich_menu_batch_unlink_all_operation import RichMenuBatchUnlinkAllOperation
139+
from linebot.v3.messaging.models.rich_menu_batch_unlink_operation import RichMenuBatchUnlinkOperation
133140
from linebot.v3.messaging.models.rich_menu_bounds import RichMenuBounds
134141
from linebot.v3.messaging.models.rich_menu_bulk_link_request import RichMenuBulkLinkRequest
135142
from linebot.v3.messaging.models.rich_menu_bulk_unlink_request import RichMenuBulkUnlinkRequest

0 commit comments

Comments
 (0)