diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ac80570cf9d4957114b877fb4ced0f8c676eb5d..a377372cab582d1a87d5465e936eddc9f7315334 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1,3 @@ # v2.14.43 + +* bug fixed for `SequentialIssuer` diff --git a/satella/__init__.py b/satella/__init__.py index 765b3feeb63ab14c15977c70e2fbaf1f4658ca67..6d124c8e2f639483c53a2623d82ca46cf9266163 100644 --- a/satella/__init__.py +++ b/satella/__init__.py @@ -1 +1 @@ -__version__ = '2.14.43a1' +__version__ = '2.14.43a2' diff --git a/satella/coding/concurrent/id_allocator.py b/satella/coding/concurrent/id_allocator.py index e395976f0e385961fdc7aa09114ca360eec405c6..6750a67a0173e5d8a5eebd5faec84f32ef611908 100644 --- a/satella/coding/concurrent/id_allocator.py +++ b/satella/coding/concurrent/id_allocator.py @@ -14,7 +14,7 @@ class SequentialIssuer(Monitor): def __init__(self, start: int = 0): super().__init__() - self.start = 0 + self.start = start @Monitor.synchronized def issue(self) -> int: