diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index d77e434..bec0c55 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project will be documented in this file. +## [1.3.1] - 2024-11-02 + +### 🐛 Bug Fixes + +- *(user)* Refresh not getting passed to request +- *(cache)* Json query distinct & list comparisons + +### 🚜 Refactor + +- *(endpoints)* Add future type import + +### 📚 Documentation + +- *(tracker)* Add examples to docstrings + ## [1.3.0] - 2024-10-31 ### 🚀 Features diff --git a/pyproject.toml b/pyproject.toml index 0e5418d..941a319 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "toggl-api-wrapper" -version = "1.3.0" +version = "1.3.1" description = "Simple Toggl API wrapper for non-premium features." authors = ["David Kasakaitis "] license = "MIT" diff --git a/toggl_api/version.py b/toggl_api/version.py index d28b3dd..35ec9a3 100644 --- a/toggl_api/version.py +++ b/toggl_api/version.py @@ -1 +1 @@ -version = "1.3.0" +version = "1.3.1"