diff --git a/CHANGELOG.md b/CHANGELOG.md index 489e5ee..8baa757 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ This changelog is auto-generated by the Python-based [Commitizen](https://commitizen-tools.github.io/commitizen). +## 0.6.37 (2023-12-18) + +### Fix + +- **deps**: bump actions/setup-python action to v5.0.0 + ## 0.6.36 (2023-12-17) ### Fix diff --git a/README.md b/README.md index e3321e4..13edaf2 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ because merges will be indistinguishable from direct pushes. ```yaml - name: Send Slack notification with job status. if: always() - uses: ScribeMD/slack-templates@0.6.36 + uses: ScribeMD/slack-templates@0.6.37 with: bot-token: ${{ secrets.SLACK_TEMPLATES_BOT_TOKEN }} channel-id: ${{ secrets.SLACK_TEMPLATES_CHANNEL_ID }} @@ -142,7 +142,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Send Slack notification with workflow result. - uses: ScribeMD/slack-templates@0.6.36 + uses: ScribeMD/slack-templates@0.6.37 with: bot-token: ${{ secrets.SLACK_TEMPLATES_BOT_TOKEN }} channel-id: ${{ secrets.SLACK_TEMPLATES_CHANNEL_ID }} @@ -165,7 +165,7 @@ jobs: shell: bash - name: Send Slack notification with custom result. if: always() && steps.network.outputs.OUTAGE == 'true' - uses: ScribeMD/slack-templates@0.6.36 + uses: ScribeMD/slack-templates@0.6.37 with: bot-token: ${{ secrets.SLACK_TEMPLATES_BOT_TOKEN }} channel-id: ${{ secrets.SLACK_TEMPLATES_CHANNEL_ID }} @@ -186,7 +186,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Send Slack notification requesting code review. - uses: ScribeMD/slack-templates@0.6.36 + uses: ScribeMD/slack-templates@0.6.37 with: bot-token: ${{ secrets.SLACK_TEMPLATES_BOT_TOKEN }} channel-id: ${{ secrets.SLACK_TEMPLATES_CHANNEL_ID }} @@ -206,7 +206,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Send Slack notification assigning pull request. - uses: ScribeMD/slack-templates@0.6.36 + uses: ScribeMD/slack-templates@0.6.37 with: bot-token: ${{ secrets.SLACK_TEMPLATES_BOT_TOKEN }} channel-id: ${{ secrets.SLACK_TEMPLATES_CHANNEL_ID }} @@ -218,7 +218,7 @@ jobs: ```yaml - name: Send custom Slack notification. if: always() - uses: ScribeMD/slack-templates@0.6.36 + uses: ScribeMD/slack-templates@0.6.37 with: bot-token: ${{ secrets.SLACK_TEMPLATES_BOT_TOKEN }} channel-id: ${{ secrets.SLACK_TEMPLATES_CHANNEL_ID }} diff --git a/pyproject.toml b/pyproject.toml index 68300f6..cce7aed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,7 +34,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "slack-templates" - version = "0.6.36" + version = "0.6.37" description = "Send Informative, Concise Slack Notifications With Minimal Effort" authors = ["Kurt von Laven "] license = "MIT"