Skip to content

Commit

Permalink
Update config.py (#344)
Browse files Browse the repository at this point in the history
* Update config.py
* Update asyncz.py
* Update release-notes.md
* Update __init__.py
  • Loading branch information
tarsil authored Jun 14, 2024
1 parent 6d27a87 commit f5037df
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions docs/en/docs/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ hide:

# Release Notes

## 3.2.5

### Fixed

- Added missing options into get_scheduler of AsynczConfig.

## 3.2.4

### Added
Expand Down
1 change: 1 addition & 0 deletions docs_src/scheduler/asyncz.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ def __init__(
scheduler=self.scheduler_class,
timezone=self.timezone,
configurations=self.configurations,
**self.options
)

self.register_tasks(tasks=self.tasks)
Expand Down
2 changes: 1 addition & 1 deletion esmerald/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.2.4"
__version__ = "3.2.5"


from lilya import status
Expand Down
1 change: 1 addition & 0 deletions esmerald/contrib/schedulers/asyncz/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ def __init__(
scheduler=self.scheduler_class,
timezone=self.timezone,
configurations=self.configurations,
**self.options
)

self.register_tasks(tasks=self.tasks)
Expand Down

0 comments on commit f5037df

Please sign in to comment.