eventsourcing 9.4.1__tar.gz → 9.4.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of eventsourcing might be problematic. Click here for more details.
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/PKG-INFO +1 -1
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/eventsourcing/domain.py +1 -1
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/pyproject.toml +1 -1
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/AUTHORS +0 -0
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/LICENSE +0 -0
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/README.md +0 -0
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/eventsourcing/__init__.py +0 -0
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/eventsourcing/application.py +0 -0
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/eventsourcing/cipher.py +0 -0
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/eventsourcing/compressor.py +0 -0
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/eventsourcing/cryptography.py +0 -0
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/eventsourcing/dispatch.py +0 -0
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/eventsourcing/interface.py +0 -0
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/eventsourcing/persistence.py +0 -0
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/eventsourcing/popo.py +0 -0
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/eventsourcing/postgres.py +0 -0
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/eventsourcing/projection.py +0 -0
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/eventsourcing/py.typed +0 -0
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/eventsourcing/sqlite.py +0 -0
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/eventsourcing/system.py +0 -0
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/eventsourcing/tests/__init__.py +0 -0
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/eventsourcing/tests/application.py +0 -0
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/eventsourcing/tests/domain.py +0 -0
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/eventsourcing/tests/persistence.py +0 -0
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/eventsourcing/tests/postgres_utils.py +0 -0
- {eventsourcing-9.4.1 → eventsourcing-9.4.2}/eventsourcing/utils.py +0 -0
|
@@ -990,7 +990,7 @@ class MetaAggregate(EventsourcingType, Generic[TAggregate], type):
|
|
|
990
990
|
class BaseAggregate(metaclass=MetaAggregate):
|
|
991
991
|
"""Base class for aggregates."""
|
|
992
992
|
|
|
993
|
-
INITIAL_VERSION = 1
|
|
993
|
+
INITIAL_VERSION: int = 1
|
|
994
994
|
|
|
995
995
|
@staticmethod
|
|
996
996
|
def create_id(*_: Any, **__: Any) -> UUID:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|