diff --git a/CHANGELOG.md b/CHANGELOG.md index a32290716..559894b48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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.13.0 - 2023-07-07 + +### [0.13.0](https://github.com/openedx/tutor-contrib-aspects/compare/v0.12.0...v0.13.0) (2023-07-07) + +#### Features + +- add support for extra rlsf ([892cba8](https://github.com/openedx/tutor-contrib-aspects/commit/892cba8366f3a6b66675a361633450b07449a67c)) + ## v0.12.0 - 2023-07-07 ### [0.12.0](https://github.com/openedx/tutor-contrib-aspects/compare/v0.11.0...v0.12.0) (2023-07-07) diff --git a/setup.cfg b/setup.cfg index 6f279ed5d..807354b26 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,4 +1,4 @@ [bumpversion] -current_version = 0.12.0 +current_version = 0.13.0 commit = False tag = False diff --git a/tutoraspects/__about__.py b/tutoraspects/__about__.py index 2747cc4d3..4058cd993 100644 --- a/tutoraspects/__about__.py +++ b/tutoraspects/__about__.py @@ -2,4 +2,4 @@ Expose some package metadata. """ -__version__ = "0.12.0" +__version__ = "0.13.0"