-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from cisco/health-check
Health check
- Loading branch information
Showing
13 changed files
with
283 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
### Added | ||
- Added a check to skill server implementation | ||
- Added `wxa_sdk check` command-line command to invoke a skill's health check | ||
- Added this changelog | ||
|
||
### Changed | ||
- Changed response serialization in server to be compatible with mindmeld 4.3.4 | ||
|
||
## 0.1.1 - 2020-02-19 | ||
|
||
- Initial implementation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "webex-assistant-sdk" | ||
version = "0.1.1" | ||
version = "0.1.2-dev" | ||
description = "An SDK for developing applications for Webex Assistant." | ||
readme = "README.md" | ||
authors = ["Minh Vo Thanh <[email protected]>", "J.J. Jackson <[email protected]>"] | ||
|
@@ -20,12 +20,12 @@ python = "^3.6" | |
# cryptography maintains backward compatibility for 3 minor versions | ||
# and each 10th minor release is major (2.8 -> 2.9 -> 3.0 ...) | ||
cryptography = ">=2.8,<3.4" | ||
mindmeld = "^4.3.0" | ||
mindmeld = "^4.3.1" | ||
requests = "^2.22.0" | ||
spacy = "^2.3.0" | ||
|
||
[tool.poetry.dev-dependencies] | ||
black = '^20.8b1' | ||
black = '^20.8b0' | ||
flake8 = '^3.7.8' | ||
isort = {version = '^4.3', extras = ['toml']} | ||
pre-commit = '^1.18' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
__version__ = '0.1.1' | ||
version = (0, 1, 2, 'dev') | ||
api_version = (1, 0) | ||
__version__ = '.'.join((str(i) for i in version)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.