Skip to content

Commit 728ba51

Browse files
committed
chore: bump version 0.3.1
1 parent 2137b73 commit 728ba51

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "toggl-api-wrapper"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
description = "Simple Toggl API wrapper for non-premium features."
55
authors = ["David Kasakaitis <[email protected]>"]
66
license = "MIT"

toggl_api/modules/meta/cached_endpoint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def __init__(
5959
)
6060
self.cache = cache
6161

62-
def request( # type: ignore[override] # noqa: PLR0913
62+
def request( # type: ignore[override]
6363
self,
6464
parameters: str,
6565
headers: Optional[dict] = None,

toggl_api/modules/user.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def current_tracker(self, *, refresh: bool = True) -> Optional[TogglTracker]:
2222

2323
return response if isinstance(response, TogglTracker) else None
2424

25-
def get_trackers( # noqa: PLR0913
25+
def get_trackers(
2626
self,
2727
since: Optional[int | datetime] = None,
2828
before: Optional[date] = None,

toggl_api/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "0.3.0"
1+
version = "0.3.1"

0 commit comments

Comments
 (0)