Skip to content

Commit

Permalink
Bump version: 3.3.4 → 3.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kus committed Feb 28, 2022
1 parent edd0e38 commit 0407e37
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.3.4
current_version = 3.3.5
commit = True
tag = True
tag_name = {new_version}
Expand Down
32 changes: 32 additions & 0 deletions .github/workflows/notify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Release
on:
push:
tags:
- '*.*.0'

jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
steps:
- uses: actions/checkout@master
- name: Set env
run: echo ::set-env name=RELEASE_VERSION::${GITHUB_REF#refs/*/}
- name: telegram notification
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_TO }}
token: ${{ secrets.TELEGRAM_TOKEN }}
message: |
Pytezos ${{ env.RELEASE_VERSION }} has been released 🎉
More info at https://github.com/baking-bad/pytezos/releases/tag/${{ env.RELEASE_VERSION }}
- name: slack notification
uses: Ilshidur/action-slack@master
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
with:
args: |
Pytezos ${{ env.RELEASE_VERSION }} has been released 🎉
More info at https://github.com/baking-bad/pytezos/releases/tag/${{ env.RELEASE_VERSION }}
18 changes: 1 addition & 17 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Release
on:
push:
tags:
- '*.*.0'
- '*.*.*'

jobs:
build:
Expand Down Expand Up @@ -35,19 +35,3 @@ jobs:
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
- name: telegram notification
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_TO }}
token: ${{ secrets.TELEGRAM_TOKEN }}
message: |
Pytezos ${{ env.RELEASE_VERSION }} has been released 🎉
More info at https://github.com/baking-bad/pytezos/releases/tag/${{ env.RELEASE_VERSION }}
- name: slack notification
uses: Ilshidur/action-slack@master
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
with:
args: |
Pytezos ${{ env.RELEASE_VERSION }} has been released 🎉
More info at https://github.com/baking-bad/pytezos/releases/tag/${{ env.RELEASE_VERSION }}
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 3.3.5 - 2022-02-27
## 3.3.5 - 2022-02-28

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pytezos"
version = "3.3.4"
version = "3.3.5"
description = "Python toolkit for Tezos"
license = "MIT"
authors = ["Michael Zaikin <[email protected]>", "Arthur Breitman", "Roman Serikov"]
Expand Down
2 changes: 1 addition & 1 deletion src/michelson_kernel/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '3.3.4'
__version__ = '3.3.5'
2 changes: 1 addition & 1 deletion src/pytezos/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
from pytezos.michelson.types.base import MichelsonType, Undefined
from pytezos.michelson.types.core import Unit

__version__ = '3.3.4'
__version__ = '3.3.5'

pytezos = PyTezosClient()

0 comments on commit 0407e37

Please sign in to comment.