Skip to content

Commit

Permalink
Release 1.6.2. For changelog, check CHANGELOG.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
ask-pyth committed Jan 8, 2019
1 parent 833242f commit 51ecdee
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 12 deletions.
8 changes: 8 additions & 0 deletions ask-sdk-model/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,11 @@ This release contains the following changes:

- Updated enum values for Reminder Status
- Updated OutputSpeech model


1.6.2
^^^^^^^

This release contains the following :

- Updated enum values for APL components.
2 changes: 1 addition & 1 deletion ask-sdk-model/ask_sdk_model/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
__pip_package_name__ = 'ask-sdk-model'
__description__ = 'The ASK SDK Model package provides model definitions, for building Alexa Skills.'
__url__ = 'https://github.com/alexa/alexa-apis-for-python'
__version__ = '1.6.1'
__version__ = '1.6.2'
__author__ = 'Alexa Skills Kit'
__author_email__ = 'ask-sdk-dynamic@amazon.com'
__license__ = 'Apache 2.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ class Align(Enum):
Allowed enum values: [CENTER, FIRST, LAST, VISIBLE]
Allowed enum values: [center, first, last, visible]
"""
CENTER = "CENTER"
FIRST = "FIRST"
LAST = "LAST"
VISIBLE = "VISIBLE"
center = "center"
first = "first"
last = "last"
visible = "visible"
def to_dict(self):
# type: () -> Dict[str, object]
"""Returns the model properties as a dict"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ class HighlightMode(Enum):
Allowed enum values: [BLOCK, LINE]
Allowed enum values: [block, line]
"""
BLOCK = "BLOCK"
LINE = "LINE"
block = "block"
line = "line"
def to_dict(self):
# type: () -> Dict[str, object]
"""Returns the model properties as a dict"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ class Position(Enum):
Allowed enum values: [ABSOLUTE, RELATIVE]
Allowed enum values: [absolute, relative]
"""
ABSOLUTE = "ABSOLUTE"
RELATIVE = "RELATIVE"
absolute = "absolute"
relative = "relative"
def to_dict(self):
# type: () -> Dict[str, object]
"""Returns the model properties as a dict"""
Expand Down

0 comments on commit 51ecdee

Please sign in to comment.