From b9fa9db0dc2efebf702faee7de8b2d375958e7fb Mon Sep 17 00:00:00 2001 From: Patrick Lannigan Date: Mon, 24 Oct 2022 13:25:39 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.12.0=20=E2=86=92=200.13.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CHANGELOG.md | 2 ++ columbo/__init__.py | 2 +- docs/index.md | 2 +- setup.cfg | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ea31e9da..bf1f182c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.12.0 +current_version = 0.13.0 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? diff --git a/CHANGELOG.md b/CHANGELOG.md index 7eb2f7ec..f3ee79d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.0] - 2022-10-24 + ### Added - Ability for `Choice` to display a custom message instead of the value being selected. This includes a new type alias (`Options`) which supports both the `Mapping[str, str]` and `List[str]` forms. ([#389](https://github.com/wayfair-incubator/columbo/pull/389)) diff --git a/columbo/__init__.py b/columbo/__init__.py index 3de1ecf3..6a3a7d2a 100644 --- a/columbo/__init__.py +++ b/columbo/__init__.py @@ -30,6 +30,6 @@ Validator, ) -__version__ = "0.12.0" +__version__ = "0.13.0" __author__ = "Patrick Lannigan " __all__ = [] # type: ignore diff --git a/docs/index.md b/docs/index.md index 4a7e3f17..f51f40d8 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,4 +1,4 @@ -# Columbo - 0.12.0 +# Columbo - 0.13.0 [![CI pipeline status](https://github.com/wayfair-incubator/columbo/workflows/CI/badge.svg?branch=main)][ci] [![PyPI](https://img.shields.io/pypi/v/columbo)][pypi] diff --git a/setup.cfg b/setup.cfg index 3970729f..d5e9d20a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ name = columbo url = https://github.com/wayfair-incubator/columbo author = Patrick Lannigan author_email = plannigan@wayfair.com -version = 0.12.0 +version = 0.13.0 description = Specify a dynamic set of questions to ask a user and get their answers. long_description = file: README.md long_description_content_type = text/markdown