diff --git a/CHANGELOG.md b/CHANGELOG.md index aa7af832..d41d447b 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.33.0 - 2023-08-29 + +### [0.33.0](https://github.com/openedx/tutor-contrib-aspects/compare/v0.32.0...v0.33.0) (2023-08-29) + +#### Features + +- feat: include language code in translated asset name (FC-0033) ([f5b8c51](https://github.com/openedx/tutor-contrib-aspects/commit/f5b8c519483ef111dafef4e39c5e3d760997e7fd)) + ## v0.32.0 - 2023-08-29 ### [0.32.0](https://github.com/openedx/tutor-contrib-aspects/compare/v0.31.3...v0.32.0) (2023-08-29) diff --git a/setup.cfg b/setup.cfg index 7c2ca957..d851fa1a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,4 +1,4 @@ [bumpversion] -current_version = 0.32.0 +current_version = 0.33.0 commit = False tag = False diff --git a/tutoraspects/__about__.py b/tutoraspects/__about__.py index fa0e203e..8ba2e8e6 100644 --- a/tutoraspects/__about__.py +++ b/tutoraspects/__about__.py @@ -2,4 +2,4 @@ Expose some package metadata. """ -__version__ = "0.32.0" +__version__ = "0.33.0"