diff --git a/.ci/config.yml b/.ci/config.yml index 5187075d1..9cfc7c58a 100644 --- a/.ci/config.yml +++ b/.ci/config.yml @@ -92,7 +92,7 @@ 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: 1.0.2 +ASPECTS_VERSION: 1.0.3 DOCKER_IMAGE_OPENEDX: edunext/openedx-aspects:{{ASPECTS_VERSION}} DOCKER_IMAGE_OPENEDX_DEV: edunext/openedx-aspects-dev:{{ASPECTS_VERSION}} ASPECTS_ENABLE_EVENT_BUS_CONSUMER: true diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e9da54b3..20cf65a4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ 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). +## v1.0.3 - 2024-07-03 + +### [1.0.3](https://github.com/openedx/tutor-contrib-aspects/compare/v1.0.2...v1.0.3) (2024-07-03) + +### Bug Fixes + +* Import of custom Superset assets ([d5f7daf](https://github.com/openedx/tutor-contrib-aspects/commit/d5f7daf816a636a32ca80d1669b3c38b9bbe30b0)) +* replace deprecated github actions ([92a503e](https://github.com/openedx/tutor-contrib-aspects/commit/92a503e461dfa21ba0141f86f611a030e7ceedbd)) +* replace deprecated github actions ([f1aeefa](https://github.com/openedx/tutor-contrib-aspects/commit/f1aeefa5bede1ba03045eed042849924ede26cd1)) +* Serialize Superset zip exports to extensions ([fd44ff4](https://github.com/openedx/tutor-contrib-aspects/commit/fd44ff49e873668f19f7625f1ba01211dc36f5e0)) + ## v1.0.2 - 2024-06-20 ### [1.0.2](https://github.com/openedx/tutor-contrib-aspects/compare/v1.0.1...v1.0.2) (2024-06-20) diff --git a/setup.cfg b/setup.cfg index 150c2fafe..202333039 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,4 +1,4 @@ [bumpversion] -current_version = 1.0.2 +current_version = 1.0.3 commit = False tag = False diff --git a/tutoraspects/__about__.py b/tutoraspects/__about__.py index 161b7394a..1470b7fbe 100644 --- a/tutoraspects/__about__.py +++ b/tutoraspects/__about__.py @@ -2,4 +2,4 @@ Expose some package metadata. """ -__version__ = "1.0.2" +__version__ = "1.0.3"