Skip to content

Commit 5801149

Browse files
committed
chore(release): version 2.1.0
`TogglTracker` Additions & DB Indexing
1 parent b4b7992 commit 5801149

File tree

4 files changed

+35
-4
lines changed

4 files changed

+35
-4
lines changed

docs/CHANGELOG.md

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,36 @@ hide:
77

88
All notable changes to this project will be documented in this file.
99

10+
## [2.1.0] - 2025-04-15
11+
12+
### 🚀 Features
13+
14+
- *(models)* Add `TogglTracker.description` property
15+
- *(models)* Add `TogglTracker.running_duration` property
16+
17+
### 🐛 Bug Fixes
18+
19+
- *(async-sqlite-cache)* Add `metadata` attribute type to class
20+
21+
### 📚 Documentation
22+
23+
- *(schema)* Add docstring to `register_tables` function
24+
- *(cache)* Add `register_tabels` function
25+
- *(models)* Update `as_dict_custom` helper function
26+
- *(models)* Add `as_dict_custom` function
27+
28+
### ⚡ Performance
29+
30+
- *(schema)* Index all high variance columns
31+
32+
### 🎨 Styling
33+
34+
- *(schema)* Remove unncessary *E402* code
35+
36+
### ⚙️ Miscellaneous Tasks
37+
38+
- *(tox)* Add `--cov` parameter to tests
39+
1040
## [2.0.0] - 2025-04-08
1141

1242
### 🚀 Features
@@ -157,7 +187,6 @@ All notable changes to this project will be documented in this file.
157187
- *(coverage)* Add source folders
158188
- Adjust tests to new linting rules
159189
- *(async-trackers)* Use utc timezone with `datetime.now`
160-
- *(async-trackers)* Add flaky mark on `test_collect_params`
161190

162191
## [1.6.0] - 2024-12-19
163192

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "toggl-api-wrapper"
3-
version = "2.0.0"
3+
version = "2.1.0"
44
description = "Simple Toggl API wrapper for non-premium features."
55
authors = [{ name = "David Kasakaitis", email = "[email protected]" }]
66
maintainers = [

src/toggl_api/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
]
1717

1818
__title__ = "toggl-api-wrapper"
19-
__version__ = "2.0.0"
19+
__version__ = "2.1.0"
2020
__description__ = "Simple Toggl API wrapper for non-premium features."
2121
__author__ = "David Kasakaitis"
2222
__author_email__ = "[email protected]"

uv.lock

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)