Skip to content

Commit

Permalink
Release v0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
stephane-caron committed Oct 17, 2023
1 parent 319ffe9 commit 0d6b0fb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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

## [0.6.1] - 2023/10/17

### Fixed

- RateLimiter: Initialization of slack attribute

## [0.6.0] - 2023/09/01

### Added
Expand Down
2 changes: 1 addition & 1 deletion loop_rate_limiters/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

"""Loop rate limiters."""

__version__ = "0.6.0"
__version__ = "0.6.1"

from .async_rate_limiter import AsyncRateLimiter
from .rate_limiter import RateLimiter
Expand Down
1 change: 1 addition & 0 deletions loop_rate_limiters/rate_limiter.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ def __init__(
period = 1.0 / frequency
self.__next_tick = perf_counter() + period
self.__period = period
self.__slack = 0.0
self.name = name
self.warn = warn

Expand Down

0 comments on commit 0d6b0fb

Please sign in to comment.