Skip to content

Commit 4ecfb24

Browse files
committed
fix after merge
1 parent 7f50a8d commit 4ecfb24

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

airbyte-cdk/python/CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
# Changelog
22

3-
## 0.1.48
3+
## 0.1.49
44
Add support for streams with explicit state attribute.
55

6+
## 0.1.48
7+
Fix type annotations.
8+
69
## 0.1.47
710
Fix typing errors.
811

airbyte-cdk/python/airbyte_cdk/sources/streams/core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def state_checkpoint_interval(self) -> Optional[int]:
171171
"""
172172
return None
173173

174-
@deprecated(version='0.1.48', reason="You should use explicit state property instead, see IncrementalMixin docs.")
174+
@deprecated(version='0.1.49', reason="You should use explicit state property instead, see IncrementalMixin docs.")
175175
def get_updated_state(self, current_stream_state: MutableMapping[str, Any], latest_record: Mapping[str, Any]):
176176
"""Override to extract state from the latest record. Needed to implement incremental sync.
177177

airbyte-cdk/python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setup(
1717
name="airbyte-cdk",
18-
version="0.1.48",
18+
version="0.1.49",
1919
description="A framework for writing Airbyte Connectors.",
2020
long_description=README,
2121
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)