From 5d0c92d2bf333f510777258609b61b2985a9849a Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Wed, 24 Mar 2021 22:38:17 +0100 Subject: [PATCH 1/3] Bump version to 0.3.2.dev1 --- python_typing_update/const.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python_typing_update/const.py b/python_typing_update/const.py index 3a95e05..01f6ca8 100644 --- a/python_typing_update/const.py +++ b/python_typing_update/const.py @@ -6,8 +6,8 @@ from enum import Flag, auto from typing import NamedTuple -version = (0, 3, 1) -dev_version = None # Set to `None` for release +version = (0, 3, 2) +dev_version = 1 # Set to `None` for release version_str = '.'.join(map(str, version)) if dev_version is not None: From bd23a00c1bc2d067de7820a1bd67676dbdade1ac Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Wed, 24 Mar 2021 22:49:25 +0100 Subject: [PATCH 2/3] Run release action on release-published (#16) --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From b02a999e697abfbaa0d707db3a18818b2482b6b1 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Wed, 24 Mar 2021 22:48:53 +0100 Subject: [PATCH 3/3] Bump version to 0.3.2 --- python_typing_update/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_typing_update/const.py b/python_typing_update/const.py index 01f6ca8..a14c5f0 100644 --- a/python_typing_update/const.py +++ b/python_typing_update/const.py @@ -7,7 +7,7 @@ from typing import NamedTuple version = (0, 3, 2) -dev_version = 1 # Set to `None` for release +dev_version = None # Set to `None` for release version_str = '.'.join(map(str, version)) if dev_version is not None: