diff --git a/.ci/config.yml b/.ci/config.yml index 149129125..26b37af4b 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: 0.107.1 +ASPECTS_VERSION: 0.107.2 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 a8498a708..f3de2a32d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ 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.107.2 - 2024-05-08 + +### [0.107.2](https://github.com/openedx/tutor-contrib-aspects/compare/v0.107.1...v0.107.2) (2024-05-08) + +### Bug Fixes + +* automatically add verbose name for dataset columns ([8d37a19](https://github.com/openedx/tutor-contrib-aspects/commit/8d37a192a69572a6afd50d5b3cf0e2b9618b3fa4)) +* automatically add verbose name for metrics ([66d7117](https://github.com/openedx/tutor-contrib-aspects/commit/66d711714e24baa77943165ebbdea810cbad09a4)) +* move chart metrics to datasets ([0db0f57](https://github.com/openedx/tutor-contrib-aspects/commit/0db0f5785d7a3dc38658db5e1a2f57474531a97c)) +* update charts owners if configured ([73b8954](https://github.com/openedx/tutor-contrib-aspects/commit/73b89545571f40c24565e9b5e0e09722e8782efe)) +* update conditional format for new metrics ([fb55119](https://github.com/openedx/tutor-contrib-aspects/commit/fb551191e2b8674a87d9f6c366d0ba91ae6b25ed)) + ## v0.107.1 - 2024-05-08 ### [0.107.1](https://github.com/openedx/tutor-contrib-aspects/compare/v0.107.0...v0.107.1) (2024-05-08) diff --git a/setup.cfg b/setup.cfg index 128bf276a..3e97706a2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,4 +1,4 @@ [bumpversion] -current_version = 0.107.1 +current_version = 0.107.2 commit = False tag = False diff --git a/tutoraspects/__about__.py b/tutoraspects/__about__.py index 87d7abfe4..382fe68b5 100644 --- a/tutoraspects/__about__.py +++ b/tutoraspects/__about__.py @@ -2,4 +2,4 @@ Expose some package metadata. """ -__version__ = "0.107.1" +__version__ = "0.107.2"