Skip to content

Commit

Permalink
Merge commit '4278f877cc4ab911d17d48cab1f870eab7c36c12'
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Wilms committed Feb 4, 2025
2 parents cb4a846 + 4278f87 commit ddc5150
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v2.0.0-beta.50 - 2025-02-04
- Add missing self paramter in IUpgradableDataSource

## v2.0.0-beta.49 - 2025-02-04
- Strongly typed settings: Switch to instance method to upgrade settings, it is much less hassle

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ class IUpgradableDataSource(ABC):
"""

@abstractmethod
def upgrade_source_configuration(configuration: Any) -> Awaitable[Any]:
def upgrade_source_configuration(self, configuration: Any) -> Awaitable[Any]:
"""
Upgrades the source configuration.
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "2.0.0",
"suffix": "beta.49"
"suffix": "beta.50"
}

0 comments on commit ddc5150

Please sign in to comment.