From 53636b1fa009fdfc125144b4efd0a69d5b534654 Mon Sep 17 00:00:00 2001 From: Ian2012 Date: Fri, 13 Oct 2023 23:12:32 +0000 Subject: [PATCH] chore: preparing release 0.55.0 --- .ci/config.yml | 2 +- CHANGELOG.md | 14 ++++++++++++++ setup.cfg | 2 +- tutoraspects/__about__.py | 2 +- 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/.ci/config.yml b/.ci/config.yml index 767445fa6..d4229379f 100644 --- a/.ci/config.yml +++ b/.ci/config.yml @@ -92,6 +92,6 @@ SUPERSET_OAUTH2_CLIENT_SECRET: StkPwE5GzPuyH4Rp SUPERSET_ROW_LEVEL_SECURITY_XAPI_GROUP_KEY: xapi_course_id SUPERSET_SECRET_KEY: WlgA6QSQKCUNGD9PAaji0JHY SUPERSET_XAPI_DASHBOARD_SLUG: openedx-xapi -ASPECTS_VERSION: 0.54.0 +ASPECTS_VERSION: 0.55.0 DOCKER_IMAGE_OPENEDX: edunext/openedx-aspects:{{ASPECTS_VERSION}} DOCKER_IMAGE_OPENEDX_DEV: edunext/openedx-aspects-dev:{{ASPECTS_VERSION}} diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d61b7530..abdd23d97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,20 @@ 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). +## v0.55.0 - 2023-10-13 + +### [0.55.0](https://github.com/openedx/tutor-contrib-aspects/compare/v0.54.0...v0.55.0) (2023-10-13) + +#### Features + +- create embeddable UUID ([d272077](https://github.com/openedx/tutor-contrib-aspects/commit/d2720772fc146982785281c124bc65ced2bee8e0)) +- create Superset LMS admin user ([cef50fd](https://github.com/openedx/tutor-contrib-aspects/commit/cef50fd5efa1bea5879fc0531a7d7b03a6a2371e)) +- inject superset dashboards settings in LMS ([30cce25](https://github.com/openedx/tutor-contrib-aspects/commit/30cce25b23a41e42891f7c457341bbfe2edb0a78)) + +#### Code Refactoring + +- define SUPERSET_EMBEDDABLE_DASHBOARDS setting ([6c8cb82](https://github.com/openedx/tutor-contrib-aspects/commit/6c8cb829ecafbdbf4f2e09292eaeedbbf35634a2)) + ## v0.54.0 - 2023-10-13 ### [0.54.0](https://github.com/openedx/tutor-contrib-aspects/compare/v0.53.0...v0.54.0) (2023-10-13) diff --git a/setup.cfg b/setup.cfg index 9754f3065..cc9c8ea97 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,4 +1,4 @@ [bumpversion] -current_version = 0.54.0 +current_version = 0.55.0 commit = False tag = False diff --git a/tutoraspects/__about__.py b/tutoraspects/__about__.py index 75289d2e9..92cb636e0 100644 --- a/tutoraspects/__about__.py +++ b/tutoraspects/__about__.py @@ -2,4 +2,4 @@ Expose some package metadata. """ -__version__ = "0.54.0" +__version__ = "0.55.0"