Skip to content

Commit

Permalink
🔝 Release 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsil committed Jun 23, 2023
1 parent a2150d5 commit 44a1d2b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion asyncz/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.0"
__version__ = "0.3.1"
6 changes: 3 additions & 3 deletions asyncz/contrib/esmerald/scheduler.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import warnings
from datetime import datetime
from datetime import timezone as dtimezone
from typing import TYPE_CHECKING, Any, Dict, Optional
from typing import TYPE_CHECKING, Any, Dict, Optional, Union

from asyncz.schedulers.types import SchedulerType
from asyncz.triggers.types import TriggerType
Expand Down Expand Up @@ -38,8 +38,8 @@ def __init__(
app: Optional["Esmerald"] = None,
scheduler_class: Optional["SchedulerType"] = None,
tasks: Optional[Dict[str, str]] = None,
timezone: Optional[dtimezone] = None,
configurations: Optional[Dict[str, str]] = None,
timezone: Optional[Union[dtimezone, str]] = None,
configurations: Optional[Dict[str, Dict[str, str]]] = None,
) -> None:
self.app = app
self.tasks = tasks
Expand Down
6 changes: 6 additions & 0 deletions docs/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release Notes

## 0.3.1

### Fixed

- `EsmeraldScheduler` attribute update (configurations and timezone).

## 0.3.0

### Changed
Expand Down

0 comments on commit 44a1d2b

Please sign in to comment.