diff --git a/.changes/unreleased/Breaking Changes-20251018-014058.yaml b/.changes/unreleased/Breaking Changes-20251018-014058.yaml deleted file mode 100644 index 38f7468..0000000 --- a/.changes/unreleased/Breaking Changes-20251018-014058.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Features -body: Rework the different constructor and SDK API to make it more future proof -time: 2025-10-18T01:40:58.600389+02:00 -custom: - Author: Kayrnt - Issue: "" diff --git a/.changes/unreleased/Fixes-20251016-214049.yaml b/.changes/unreleased/Fixes-20251016-214049.yaml deleted file mode 100644 index d160bb4..0000000 --- a/.changes/unreleased/Fixes-20251016-214049.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Correct the store creation and DSN documentation -time: 2025-10-16T21:40:49.8561+02:00 -custom: - Author: Kayrnt - Issue: "" diff --git a/.changes/unreleased/Under the Hood-20251016-220639.yaml b/.changes/unreleased/Under the Hood-20251016-220639.yaml deleted file mode 100644 index 417ecd8..0000000 --- a/.changes/unreleased/Under the Hood-20251016-220639.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Under the Hood -body: Add more unit tests to create entities and stores -time: 2025-10-16T22:06:39.725486+02:00 -custom: - Author: Kayrnt - Issue: "" diff --git a/.changes/unreleased/Under the Hood-20251016-232835.yaml b/.changes/unreleased/Under the Hood-20251016-232835.yaml deleted file mode 100644 index 43167ec..0000000 --- a/.changes/unreleased/Under the Hood-20251016-232835.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Under the Hood -body: Enhance entity creation examples and improve parameter handling in the SDK -time: 2025-10-16T23:28:35.603992+02:00 -custom: - Author: Kayrnt - Issue: "" diff --git a/.changes/v0.2.0.md b/.changes/v0.2.0.md new file mode 100644 index 0000000..057b5b3 --- /dev/null +++ b/.changes/v0.2.0.md @@ -0,0 +1,22 @@ +## deltastream-sdk v0.2.0 - October 20, 2025 + +### Features + + + - Rework the different constructor and SDK API to make it more future proof + +### Fixes + + + - Correct the store creation and DSN documentation + +### Under the Hood + + + - Add more unit tests to create entities and stores + + - Enhance entity creation examples and improve parameter handling in the SDK + +### Contributors +- [@Kayrnt](https://github.com/Kayrnt) + diff --git a/CHANGELOG.md b/CHANGELOG.md index 9818db1..ffd1ac1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,29 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), and is generated by [Changie](https://github.com/miniscruff/changie). +## deltastream-sdk v0.2.0 - October 20, 2025 + +### Features + + + - Rework the different constructor and SDK API to make it more future proof + +### Fixes + + + - Correct the store creation and DSN documentation + +### Under the Hood + + + - Add more unit tests to create entities and stores + + - Enhance entity creation examples and improve parameter handling in the SDK + +### Contributors +- [@Kayrnt](https://github.com/Kayrnt) + + ## deltastream-sdk v0.1.1 - September 20, 2025 ### Under the Hood diff --git a/pyproject.toml b/pyproject.toml index 981ed66..4ecdf17 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "deltastream-sdk" -version = "0.1.1" +version = "0.2.0" description = "Python SDK for DeltaStream, built on the DeltaStream Connector library" readme = "README.md" requires-python = ">=3.11"