From ea9959b77aa0a2210de9ff0bac16f415aafb7ba6 Mon Sep 17 00:00:00 2001 From: Greg Werner Date: Thu, 7 May 2020 11:22:32 -0400 Subject: [PATCH] chore: Release v0.3.0 (#40) - Adds grades submission feature using LTI 1.1 - Tested with Canvas LMS --- CHANGELOG.md | 7 +++++++ package.json | 2 +- src/_version.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6c7f842..f622ef40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ 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.3.0 (2020-05-07) + + +### Features + +* Add grades submission feature using LTI 1.1 ([#38](https://github.com/IllumiDesk/illumidesk/issues/38)) ([10d1a63](https://github.com/IllumiDesk/illumidesk/commit/10d1a631a4dd16637cfa917beb940267a63bcfd4)) + ### 0.2.3 (2020-05-01) diff --git a/package.json b/package.json index 0a73bc82..0ee6b62c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "illumidesk", - "version": "0.2.3", + "version": "0.3.0", "description": "Teach and learning with web-based notebooks!", "scripts": { "release": "standard-version" diff --git a/src/_version.py b/src/_version.py index de3a7f5a..df970f58 100644 --- a/src/_version.py +++ b/src/_version.py @@ -4,8 +4,8 @@ # within the repo's root package.json version_info = ( 0, - 2, 3, + 0, ) __version__ = ".".join(map(str, version_info[:3]))