diff --git a/CHANGELOG.md b/CHANGELOG.md index f1f0adaf..2f0536b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,23 @@ 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.8.3 (2020-07-23) + + +### Features + +* Custom base url configuration ([#231](https://github.com/IllumiDesk/illumidesk/issues/231)) ([5c50458](https://github.com/IllumiDesk/illumidesk/commit/5c50458843d46bc30fac819cccbb00cb03258118)) +* Pull workspace images with ansible-playbook from registry ([#229](https://github.com/IllumiDesk/illumidesk/issues/229)) ([757006b](https://github.com/IllumiDesk/illumidesk/commit/757006b881fcc59abf963644979a55d5836d1750)) +* Set admin user with ansible configuration ([#213](https://github.com/IllumiDesk/illumidesk/issues/213)) ([eb7981f](https://github.com/IllumiDesk/illumidesk/commit/eb7981f3cc764d10c0d81f1387260cfdf9784262)) +* Add course template and use setup-course for course config ([#236](https://github.com/IllumiDesk/illumidesk/issues/236)) ([2f229e3](https://github.com/IllumiDesk/illumidesk/commit/2f229e316f317d94dfaa13e2a874a983792bb2cf)) + +### Bug Fixes + +* Update required claims and username value when private ([#241](https://github.com/IllumiDesk/illumidesk/issues/241)) ([1c49ed6](https://github.com/IllumiDesk/illumidesk/commit/1c49ed66f71c6096b299473d06ede64bac145f79)) +* Update LTI configs with admin user env var ([#219](https://github.com/IllumiDesk/illumidesk/issues/219)) ([3c99d58](https://github.com/IllumiDesk/illumidesk/commit/3c99d5831b1dd194fdf49ac1c0398703a475e6d8)) +* Update nbgrader config template by adding a escape characters ([#230](https://github.com/IllumiDesk/illumidesk/issues/230)) ([57f5361](https://github.com/IllumiDesk/illumidesk/commit/57f53619ea8b6ea8dac09d19d9f0dbcf0f173e69)) +* Update required claims and username value when private ([#241](https://github.com/IllumiDesk/illumidesk/issues/241)) ([1c49ed6](https://github.com/IllumiDesk/illumidesk/commit/1c49ed66f71c6096b299473d06ede64bac145f79)) + ### 0.8.2 (2020-07-16) @@ -217,4 +234,4 @@ All notable changes to this project will be documented in this file. See [standa ### Bug Fixes -* Update standard launch url for LTI 11 ([#6](https://github.com/IllumiDesk/illumidesk/issues/6)) ([736132a](https://github.com/IllumiDesk/illumidesk/commit/736132a971fcb7a7df2b77ee2392a07e0d39ea4a)) +* Update standard launch url for LTI 11 ([#6](https://github.com/IllumiDesk/illumidesk/issues/6)) ([736132a](https://github.com/IllumiDesk/illumidesk/commit/736132a971fcb7a7df2b77ee2392a07e0d39ea4a)) \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 02c194db..6f7d323c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "illumidesk", - "version": "0.8.2", + "version": "0.8.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 8467ed00..806118bd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "illumidesk", - "version": "0.8.2", + "version": "0.8.3", "description": "Teach and learning with web-based notebooks!", "scripts": { "release": "standard-version" diff --git a/src/_version.py b/src/_version.py index 36894468..f92cac93 100644 --- a/src/_version.py +++ b/src/_version.py @@ -5,7 +5,7 @@ version_info = ( 0, 8, - 2, + 3, ) __version__ = ".".join(map(str, version_info[:3]))