Skip to content

Commit 8efe008

Browse files
committed
Major version 1.0.0 release
1 parent fb06d47 commit 8efe008

36 files changed

+47
-71
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ information to effectively respond to your bug report or contribution.
1111

1212
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
1313

14-
When filing an issue, please check [existing open](https://github.com/alexa-labs/alexa-apis-for-python/issues), or [recently closed](https://github.com/alexa-labs/alexa-apis-for-python/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
14+
When filing an issue, please check [existing open](https://github.com/alexa/alexa-apis-for-python/issues), or [recently closed](https://github.com/alexa/alexa-apis-for-python/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
1515
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
1616

17-
* A reproducible test case or series of steps, using the [Alexa Skills Kit Python SDK](https://github.com/alexa-labs/alexa-skills-kit-sdk-for-python)
17+
* A reproducible test case or series of steps, using the [Alexa Skills Kit Python SDK](https://github.com/alexa/alexa-skills-kit-sdk-for-python)
1818
* The version of our code being used
1919
* Any modifications you've made relevant to the bug
2020
* Anything unusual about your environment or deployment
@@ -39,6 +39,6 @@ If you discover a potential security issue in this project we ask that you notif
3939

4040
## Licensing
4141

42-
See the [LICENSE](https://github.com/alexa-labs/alexa-apis-for-python/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
42+
See the [LICENSE](https://github.com/alexa/alexa-apis-for-python/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
4343

4444
We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Alexa APIs for Python
55

66
The **Alexa APIs for Python** consists of python classes that represent the
77
request and response JSON of Alexa services. These models act as a core
8-
dependency for the `Alexa Skills Kit Python SDK (Beta) <https://github.com/alexa-labs/alexa-skills-kit-sdk-for-python>`__.
8+
dependency for the `Alexa Skills Kit Python SDK <https://github.com/alexa/alexa-skills-kit-sdk-for-python>`__.
99

1010
These model classes are auto-generated using the `JSON schemas <https://developer.amazon.com/docs/custom-skills/request-and-response-json-reference.html>`__
1111
in the developer documentation.
@@ -18,7 +18,7 @@ in the developer documentation.
1818
:target: https://pypi.python.org/pypi/ask-sdk-model/
1919
:alt: Version
2020
.. |License| image:: http://img.shields.io/pypi/l/ask-sdk-core.svg?style=flat
21-
:target: https://github.com/alexa-labs/alexa-apis-for-python/blob/master/LICENSE
21+
:target: https://github.com/alexa/alexa-apis-for-python/blob/master/LICENSE
2222
:alt: License
2323

2424
==================================== =======
@@ -31,14 +31,14 @@ ask-sdk-model |Model Version|
3131
Following are some resources that can help you get started quickly with
3232
models and SDK:
3333

34-
* `Alexa Skills Kit Python SDK (Beta) <https://github.com/alexa-labs/alexa-skills-kit-sdk-for-python>`__
34+
* `Alexa Skills Kit Python SDK <https://github.com/alexa/alexa-skills-kit-sdk-for-python>`__
3535
* `API Documentation <https://alexa-skills-kit-python-sdk.readthedocs.io/en/latest/models/ask_sdk_model.html>`__
3636

3737
Got Feedback?
3838
-------------
3939

4040
- We would like to hear about your bugs, feature requests, questions or quick feedback.
41-
Please search for `existing issues <https://github.com/alexa-labs/alexa-apis-for-python/issues>`_
41+
Please search for `existing issues <https://github.com/alexa/alexa-apis-for-python/issues>`_
4242
before opening a new one. It would also be helpful if you follow the
4343
templates for issue creation. Please follow the
4444
`contributing guidelines <CONTRIBUTING.md>`__!!

ask-sdk-model/CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,9 @@ CHANGELOG
2626
~~~~~
2727

2828
* APIs for getting device timezone, distance measurement, temperature measurement
29+
30+
1.0.0
31+
-----
32+
33+
* Production release of ASK Models Package.
34+

ask-sdk-model/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ The model definitions in this package are auto-generated. The issues and pull re
1414
on the repository are not monitored and may get closed without investigation. Please use
1515
these community resources for getting help:
1616

17-
* Use the `ASK SDK <https://github.com/alexa-labs/alexa-skills-kit-sdk-for-python>`_ for building skills and filing bugs.
17+
* Use the `ASK SDK <https://github.com/alexa/alexa-skills-kit-sdk-for-python>`_ for building skills and filing bugs.
1818
* Request and vote for `Alexa features <https://alexa.uservoice.com/forums/906892-alexa-skills-developer-voice-and-vote>`_!

ask-sdk-model/ask_sdk_model/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414
__pip_package_name__ = 'ask-sdk-model'
1515
__description__ = 'The ASK SDK Model package provides model definitions, for building Alexa Skills.'
16-
__url__ = 'http://developer.amazon.com/ask'
17-
__version__ = '0.3.0'
16+
__url__ = 'https://github.com/alexa/alexa-apis-for-python'
17+
__version__ = '1.0.0'
1818
__author__ = 'Alexa Skills Kit'
1919
__author_email__ = 'ask-sdk-dynamic@amazon.com'
2020
__license__ = 'Apache 2.0'

ask-sdk-model/ask_sdk_model/dialog_state.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,11 @@ class DialogState(Enum):
3131
3232
3333
34-
Allowed enum values: [STARTED, IN_PROGRESS, COMPLETED, ]
34+
Allowed enum values: [STARTED, IN_PROGRESS, COMPLETED]
3535
"""
3636
STARTED = "STARTED"
3737
IN_PROGRESS = "IN_PROGRESS"
3838
COMPLETED = "COMPLETED"
39-
4039
def to_dict(self):
4140
# type: () -> Dict[str, object]
4241
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/intent_confirmation_status.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,11 @@ class IntentConfirmationStatus(Enum):
3131
3232
3333
34-
Allowed enum values: [NONE, DENIED, CONFIRMED, ]
34+
Allowed enum values: [NONE, DENIED, CONFIRMED]
3535
"""
3636
NONE = "NONE"
3737
DENIED = "DENIED"
3838
CONFIRMED = "CONFIRMED"
39-
4039
def to_dict(self):
4140
# type: () -> Dict[str, object]
4241
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/interfaces/amazonpay/model/v1/billing_agreement_status.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,13 @@ class BillingAgreementStatus(Enum):
3131
3232
3333
34-
Allowed enum values: [CANCELED, CLOSED, DRAFT, OPEN, SUSPENDED, ]
34+
Allowed enum values: [CANCELED, CLOSED, DRAFT, OPEN, SUSPENDED]
3535
"""
3636
CANCELED = "CANCELED"
3737
CLOSED = "CLOSED"
3838
DRAFT = "DRAFT"
3939
OPEN = "OPEN"
4040
SUSPENDED = "SUSPENDED"
41-
4241
def to_dict(self):
4342
# type: () -> Dict[str, object]
4443
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/interfaces/amazonpay/model/v1/payment_action.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,10 @@ class PaymentAction(Enum):
3131
3232
3333
34-
Allowed enum values: [Authorize, AuthorizeAndCapture, ]
34+
Allowed enum values: [Authorize, AuthorizeAndCapture]
3535
"""
3636
Authorize = "Authorize"
3737
AuthorizeAndCapture = "AuthorizeAndCapture"
38-
3938
def to_dict(self):
4039
# type: () -> Dict[str, object]
4140
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/interfaces/amazonpay/model/v1/release_environment.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,10 @@ class ReleaseEnvironment(Enum):
3131
3232
3333
34-
Allowed enum values: [LIVE, SANDBOX, ]
34+
Allowed enum values: [LIVE, SANDBOX]
3535
"""
3636
LIVE = "LIVE"
3737
SANDBOX = "SANDBOX"
38-
3938
def to_dict(self):
4039
# type: () -> Dict[str, object]
4140
"""Returns the model properties as a dict"""

0 commit comments

Comments
 (0)