diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c005b9..dd0cf15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 1.3 + +* New property for songs: has_subtitles +* Upgrade dependencies +* Add songs without ass file as pending +* Song folders must have a metadata.json file + ## 1.2 * Get karaoke ass generator from negromate.web @@ -9,6 +16,7 @@ * Use configuration file for commands defaults ## 1.1 + * Start with generic negromate command with entry points for other modules * Move image generating code to utils * Migrate setup to pep517 diff --git a/negromate/songs/__init__.py b/negromate/songs/__init__.py index 219d27d..101e3ea 100644 --- a/negromate/songs/__init__.py +++ b/negromate/songs/__init__.py @@ -1,6 +1,6 @@ import logging -VERSION = "1.2" +VERSION = "1.3" logger = logging.getLogger("negromate.songs")