diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 25ce843..0b332ef 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -3,7 +3,7 @@ name: Release on: release: types: - - created + - published env: DEFAULT_PYTHON: 3.9 diff --git a/python_typing_update/const.py b/python_typing_update/const.py index 3a95e05..a14c5f0 100644 --- a/python_typing_update/const.py +++ b/python_typing_update/const.py @@ -6,7 +6,7 @@ from enum import Flag, auto from typing import NamedTuple -version = (0, 3, 1) +version = (0, 3, 2) dev_version = None # Set to `None` for release version_str = '.'.join(map(str, version))