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
12 changes: 6 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -132,13 +132,13 @@ jobs:
with:
payload: |
{
"text": "✅ SUCCESSFUL: ${{ steps.release_info.outputs.type }} Release ${{ steps.release_info.outputs.version }}",
"text": "superstream-python-clients v${{ steps.release_info.outputs.version }} ${{ steps.release_info.outputs.type }} Release SUCCESSFUL ✅",
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*${{ steps.release_info.outputs.type }} Release Successful* ✅\n*Version:* ${{ steps.release_info.outputs.version }}\n*Repository:* ${{ github.repository }}\n*Branch:* ${{ github.ref_name }}\n*Commit:* <${{ github.event.head_commit.url }}|${{ github.sha }}>\n*Author:* ${{ github.event.head_commit.author.name }}\n*Message:* ${{ github.event.head_commit.message }}"
"text": "*superstream-python-clients v${{ steps.release_info.outputs.version }} ${{ steps.release_info.outputs.type }} Release SUCCESSFUL* ✅\n*Branch:* ${{ github.ref_name }}\n*Commit:* <${{ github.event.head_commit.url }}|${{ github.sha }}>\n*Author:* ${{ github.event.head_commit.author.name }}\n*Message:* ${{ github.event.head_commit.message }}"
}
}
]
Expand All @@ -153,13 +153,13 @@ jobs:
with:
payload: |
{
"text": "❌ FAILED: ${{ steps.release_info.outputs.type }} Release",
"text": "superstream-python-clients v${{ steps.release_info.outputs.version }} ${{ steps.release_info.outputs.type }} Release FAILED ❌",
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*${{ steps.release_info.outputs.type }} Release Failed* ❌\n*Repository:* ${{ github.repository }}\n*Branch:* ${{ github.ref_name }}\n*Commit:* <${{ github.event.head_commit.url }}|${{ github.sha }}>\n*Author:* ${{ github.event.head_commit.author.name }}\n*Workflow Run:* <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View Details>"
"text": "*superstream-python-clients v${{ steps.release_info.outputs.version }} ${{ steps.release_info.outputs.type }} Release FAILED* ❌\n*Branch:* ${{ github.ref_name }}\n*Commit:* <${{ github.event.head_commit.url }}|${{ github.sha }}>\n*Author:* ${{ github.event.head_commit.author.name }}\n*Workflow Run:* <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View Details>"
}
}
]
Expand All @@ -174,13 +174,13 @@ jobs:
with:
payload: |
{
"text": "⚠️ ABORTED: ${{ steps.release_info.outputs.type }} Release",
"text": "superstream-python-clients v${{ steps.release_info.outputs.version }} ${{ steps.release_info.outputs.type }} Release ABORTED ⚠️",
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*${{ steps.release_info.outputs.type }} Release Aborted* ⚠️\n*Repository:* ${{ github.repository }}\n*Branch:* ${{ github.ref_name }}\n*Commit:* <${{ github.event.head_commit.url }}|${{ github.sha }}>\n*Author:* ${{ github.event.head_commit.author.name }}"
"text": "*superstream-python-clients v${{ steps.release_info.outputs.version }} ${{ steps.release_info.outputs.type }} Release ABORTED* ⚠️\n*Branch:* ${{ github.ref_name }}\n*Commit:* <${{ github.event.head_commit.url }}|${{ github.sha }}>\n*Author:* ${{ github.event.head_commit.author.name }}"
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "superstream-clients"
version = "1.0.1"
version = "1.0.2"
description = "Superstream optimisation library for Kafka producers"
authors = [{name = "Superstream Labs", email = "support@superstream.ai"}]
license = "Apache-2.0"
Expand Down