diff --git a/CHANGELOG.md b/CHANGELOG.md index df3a53f..09a6b34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,23 @@ +## v0.5.0 (2023-08-16) + +### :bug: + +* :bug: Fix for Python headers with nested braces ([`0e95d33`](https://github.com/getcodelimit/codelimit/commit/0e95d33a207f43d40943da32a22a66a7a9759d48)) + +### :sparkles: + +* :sparkles: Issue 15 invoking without tui (#16) ([`5dda87d`](https://github.com/getcodelimit/codelimit/commit/5dda87d4bef6a21069eb0c85a624651d9aff3e02)) + +### Other + +* Fix "PythonLanguage" typo (#17) ([`167f154`](https://github.com/getcodelimit/codelimit/commit/167f154f688777c51d55823aefa5a76c47f490a2)) + +* :green_heart: Trigger workflow manually ([`5344210`](https://github.com/getcodelimit/codelimit/commit/5344210cfcdeb96110976b59a557de353155a75e)) + + ## v0.4.0 (2023-08-11) ### :lipstick: diff --git a/codelimit/version.py b/codelimit/version.py index 95bacf1..68f8147 100644 --- a/codelimit/version.py +++ b/codelimit/version.py @@ -2,5 +2,5 @@ today = date.today() -version = "0.4.0" +version = "0.5.0" release_date = today.strftime("%Y-%m-%d") diff --git a/pyproject.toml b/pyproject.toml index 2caacb6..24edcc3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "codelimit" -version = "0.4.0" +version = "0.5.0" description = "" authors = ["Rob van der Leek "] readme = "README.md"