From 80e9223c7106cc08b6aa1a57fe7a37343b33e9d0 Mon Sep 17 00:00:00 2001 From: "J.J. Jackson" Date: Tue, 9 Feb 2021 19:40:21 -0800 Subject: [PATCH] Bump Version -> 0.2.0 --- CHANGELOG.md | 4 +++- pyproject.toml | 2 +- webex_assistant_sdk/_version.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cced598..f712ef4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,14 +4,16 @@ 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] +## 0.2.0 - 2021-02-09 ### 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 diff --git a/pyproject.toml b/pyproject.toml index 8ffe8e4..d33fcf7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "webex-assistant-sdk" -version = "0.1.2-dev" +version = "0.2.0" description = "An SDK for developing applications for Webex Assistant." readme = "README.md" authors = ["Minh Vo Thanh ", "J.J. Jackson "] diff --git a/webex_assistant_sdk/_version.py b/webex_assistant_sdk/_version.py index ed67052..fcc5223 100644 --- a/webex_assistant_sdk/_version.py +++ b/webex_assistant_sdk/_version.py @@ -1,3 +1,3 @@ -version = (0, 1, 2, 'dev') +version = (0, 2, 0) api_version = (1, 0) __version__ = '.'.join((str(i) for i in version))