Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ jobs:
env:
TAG: ${{ needs.release-please.outputs.tag_name }}
run: |
# Install the freshly built wheel so we verify the artifact that is
# about to be published, not an editable/source checkout.
python -m pip install dist/*.whl
VERSION="$(python -c 'import senderkit; print(senderkit.__version__)')"
echo "Package version: $VERSION"
echo "Release tag: $TAG"
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.0.0"
".": "0.0.0"
}
8 changes: 0 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
# Changelog

## 1.0.0 (2026-06-13)


### Features

* automate releases with release-please ([a8ccebd](https://github.com/senderkit/senderkit-sdk-python/commit/a8ccebd6ebef1a4a5ff04e5b52d3027a12899193))
* automate releases with release-please ([aec6d70](https://github.com/senderkit/senderkit-sdk-python/commit/aec6d700dc9c4cf8a7d42fa56c7ddbe4cb11c304))

## 0.1.0

Initial release of the hand-written SenderKit Python SDK (replacing the earlier
Expand Down
1 change: 1 addition & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
".": {
"release-type": "simple",
"package-name": "senderkit",
"include-component-in-tag": false,
"changelog-path": "CHANGELOG.md",
"extra-files": ["src/senderkit/_version.py"]
}
Expand Down
2 changes: 1 addition & 1 deletion src/senderkit/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Single source of truth for the SDK version, surfaced in the User-Agent header."""

VERSION = "1.0.0" # x-release-please-version
VERSION = "0.1.0" # x-release-please-version