Skip to content

Commit

Permalink
[DOP-2330] - update version and release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
maxim-lixakov committed Jan 9, 2024
1 parent 0f6f295 commit 988e152
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/changelog/next_release/71.breaking.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Remove ``cover`` method from base ``HWM`` class and its use with following tests in child classes
2 changes: 1 addition & 1 deletion etl_entities/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.3
2.2.0
2 changes: 2 additions & 0 deletions etl_entities/hwm/key_value/key_value_int_hwm.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ class KeyValueIntHWM(KeyValueHWM[int]):
)
"""

# employing frozendict without specifying `frozendict[Any, int]`
# due to the lack of support for generic dict annotations in Python 3.7.
value: frozendict = Field(default_factory=frozendict)

def serialize(self) -> dict:
Expand Down

0 comments on commit 988e152

Please sign in to comment.