Skip to content

Commit 51ecdee

Browse files
author
ask-pyth
committed
Release 1.6.2. For changelog, check CHANGELOG.rst
1 parent 833242f commit 51ecdee

File tree

5 files changed

+20
-12
lines changed

5 files changed

+20
-12
lines changed

ask-sdk-model/CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,3 +99,11 @@ This release contains the following changes:
9999

100100
- Updated enum values for Reminder Status
101101
- Updated OutputSpeech model
102+
103+
104+
1.6.2
105+
^^^^^^^
106+
107+
This release contains the following :
108+
109+
- Updated enum values for APL components.

ask-sdk-model/ask_sdk_model/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
__pip_package_name__ = 'ask-sdk-model'
1515
__description__ = 'The ASK SDK Model package provides model definitions, for building Alexa Skills.'
1616
__url__ = 'https://github.com/alexa/alexa-apis-for-python'
17-
__version__ = '1.6.1'
17+
__version__ = '1.6.2'
1818
__author__ = 'Alexa Skills Kit'
1919
__author_email__ = 'ask-sdk-dynamic@amazon.com'
2020
__license__ = 'Apache 2.0'

ask-sdk-model/ask_sdk_model/interfaces/alexa/presentation/apl/align.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ class Align(Enum):
3131
3232
3333
34-
Allowed enum values: [CENTER, FIRST, LAST, VISIBLE]
34+
Allowed enum values: [center, first, last, visible]
3535
"""
36-
CENTER = "CENTER"
37-
FIRST = "FIRST"
38-
LAST = "LAST"
39-
VISIBLE = "VISIBLE"
36+
center = "center"
37+
first = "first"
38+
last = "last"
39+
visible = "visible"
4040
def to_dict(self):
4141
# type: () -> Dict[str, object]
4242
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/interfaces/alexa/presentation/apl/highlight_mode.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ class HighlightMode(Enum):
3131
3232
3333
34-
Allowed enum values: [BLOCK, LINE]
34+
Allowed enum values: [block, line]
3535
"""
36-
BLOCK = "BLOCK"
37-
LINE = "LINE"
36+
block = "block"
37+
line = "line"
3838
def to_dict(self):
3939
# type: () -> Dict[str, object]
4040
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/interfaces/alexa/presentation/apl/position.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ class Position(Enum):
3131
3232
3333
34-
Allowed enum values: [ABSOLUTE, RELATIVE]
34+
Allowed enum values: [absolute, relative]
3535
"""
36-
ABSOLUTE = "ABSOLUTE"
37-
RELATIVE = "RELATIVE"
36+
absolute = "absolute"
37+
relative = "relative"
3838
def to_dict(self):
3939
# type: () -> Dict[str, object]
4040
"""Returns the model properties as a dict"""

0 commit comments

Comments
 (0)