diff --git a/CHANGELOG.md b/CHANGELOG.md index 00a4af18..c6c7f842 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### 0.2.3 (2020-05-01) + + +### Bug Fixes + +* Remove ansible-lint due to security issues ([#24](https://github.com/IllumiDesk/illumidesk/issues/34)) ([278ca0c](https://github.com/IllumiDesk/illumidesk/commit/278ca0c3af12b13f94416b1cda44f630a67ef457)) + + ### 0.2.2 (2020-04-25) diff --git a/package.json b/package.json index fdf03a32..0a73bc82 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "illumidesk", - "version": "0.2.2", + "version": "0.2.3", "description": "Teach and learning with web-based notebooks!", "scripts": { "release": "standard-version" diff --git a/src/_version.py b/src/_version.py index 4c68fdbe..de3a7f5a 100644 --- a/src/_version.py +++ b/src/_version.py @@ -5,7 +5,7 @@ version_info = ( 0, 2, - 2, + 3, ) __version__ = ".".join(map(str, version_info[:3]))