From 6bded52b7634fafe0096f586c8e0039f2140a26b Mon Sep 17 00:00:00 2001 From: Brady Lenz Date: Tue, 20 Jul 2021 18:21:56 -0500 Subject: [PATCH] bump version -> 0.3.0 --- CHANGELOG.md | 2 +- pyproject.toml | 2 +- webex_assistant_sdk/_version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b30e0e..5d817a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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.3.0 - 2021-07-20 ### Added diff --git a/pyproject.toml b/pyproject.toml index 446f069..9102055 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "webex-assistant-sdk" -version = "0.2.0" +version = "0.3.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 fcc5223..bd8d1d8 100644 --- a/webex_assistant_sdk/_version.py +++ b/webex_assistant_sdk/_version.py @@ -1,3 +1,3 @@ -version = (0, 2, 0) +version = (0, 3, 0) api_version = (1, 0) __version__ = '.'.join((str(i) for i in version))