Skip to content

Commit

Permalink
Release 1.7.3. For changelog, check CHANGELOG.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
ask-pyth committed Aug 27, 2020
1 parent 9a08e6f commit 5a149d5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
8 changes: 8 additions & 0 deletions ask-smapi-model/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -123,3 +123,11 @@ This release contains the following changes :
This release contains the following changes :

- Added new metadata, removed requirements and updated descriptions for enabling save incomplete ASR annotation sets.


1.7.3
^^^^^

This release contains the following changes :

- minor bug fixes in existing models.
2 changes: 1 addition & 1 deletion ask-smapi-model/ask_smapi_model/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
__pip_package_name__ = 'ask-smapi-model'
__description__ = 'The SMAPI SDK Model package provides model definitions for making Skill Management API calls.'
__url__ = 'https://github.com/alexa/alexa-apis-for-python'
__version__ = '1.7.2'
__version__ = '1.7.3'
__author__ = 'Alexa Skills Kit'
__author_email__ = 'ask-sdk-dynamic@amazon.com'
__license__ = 'Apache 2.0'
Expand Down
12 changes: 6 additions & 6 deletions ask-smapi-model/ask_smapi_model/v1/skill/manifest/music_apis.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ class MusicApis(object):
:type endpoint: (optional) ask_smapi_model.v1.skill.manifest.lambda_endpoint.LambdaEndpoint
:param capabilities: Defines the structure of music capabilities information in the skill manifest.
:type capabilities: (optional) list[ask_smapi_model.v1.skill.manifest.music_capability.MusicCapability]
:param interfaces:
:type interfaces: (optional) ask_smapi_model.v1.skill.manifest.music_interfaces.MusicInterfaces
:param interfaces: A list of music skill interfaces that your skill supports.
:type interfaces: (optional) list[ask_smapi_model.v1.skill.manifest.music_interfaces.MusicInterfaces]
:param locales: Defines the structure of locale specific music information in the skill manifest.
:type locales: (optional) dict(str, ask_smapi_model.v1.skill.manifest.localized_music_info.LocalizedMusicInfo)
:param content_types: List of the type of content to be provided by the music skill.
Expand All @@ -54,7 +54,7 @@ class MusicApis(object):
'regions': 'dict(str, ask_smapi_model.v1.skill.manifest.lambda_region.LambdaRegion)',
'endpoint': 'ask_smapi_model.v1.skill.manifest.lambda_endpoint.LambdaEndpoint',
'capabilities': 'list[ask_smapi_model.v1.skill.manifest.music_capability.MusicCapability]',
'interfaces': 'ask_smapi_model.v1.skill.manifest.music_interfaces.MusicInterfaces',
'interfaces': 'list[ask_smapi_model.v1.skill.manifest.music_interfaces.MusicInterfaces]',
'locales': 'dict(str, ask_smapi_model.v1.skill.manifest.localized_music_info.LocalizedMusicInfo)',
'content_types': 'list[ask_smapi_model.v1.skill.manifest.music_content_type.MusicContentType]'
} # type: Dict
Expand All @@ -70,7 +70,7 @@ class MusicApis(object):
supports_multiple_types = False

def __init__(self, regions=None, endpoint=None, capabilities=None, interfaces=None, locales=None, content_types=None):
# type: (Optional[Dict[str, LambdaRegionV1]], Optional[LambdaEndpointV1], Optional[List[MusicCapabilityV1]], Optional[MusicInterfacesV1], Optional[Dict[str, LocalizedMusicInfoV1]], Optional[List[MusicContentTypeV1]]) -> None
# type: (Optional[Dict[str, LambdaRegionV1]], Optional[LambdaEndpointV1], Optional[List[MusicCapabilityV1]], Optional[List[MusicInterfacesV1]], Optional[Dict[str, LocalizedMusicInfoV1]], Optional[List[MusicContentTypeV1]]) -> None
"""Defines the structure of music api in the skill manifest.
:param regions: Contains an array of the supported <region> Objects.
Expand All @@ -79,8 +79,8 @@ def __init__(self, regions=None, endpoint=None, capabilities=None, interfaces=No
:type endpoint: (optional) ask_smapi_model.v1.skill.manifest.lambda_endpoint.LambdaEndpoint
:param capabilities: Defines the structure of music capabilities information in the skill manifest.
:type capabilities: (optional) list[ask_smapi_model.v1.skill.manifest.music_capability.MusicCapability]
:param interfaces:
:type interfaces: (optional) ask_smapi_model.v1.skill.manifest.music_interfaces.MusicInterfaces
:param interfaces: A list of music skill interfaces that your skill supports.
:type interfaces: (optional) list[ask_smapi_model.v1.skill.manifest.music_interfaces.MusicInterfaces]
:param locales: Defines the structure of locale specific music information in the skill manifest.
:type locales: (optional) dict(str, ask_smapi_model.v1.skill.manifest.localized_music_info.LocalizedMusicInfo)
:param content_types: List of the type of content to be provided by the music skill.
Expand Down

0 comments on commit 5a149d5

Please sign in to comment.