Skip to content

Commit

Permalink
Merge pull request #404 from wayfair-incubator/bump_version_to_0.13.0
Browse files Browse the repository at this point in the history
Bump version: 0.12.0 → 0.13.0
  • Loading branch information
plannigan authored Oct 24, 2022
2 parents 13f24d5 + b9fa9db commit af5933d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 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 = 0.12.0
current_version = 0.13.0
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<pre_release>[a-z]+))?
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion columbo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
Validator,
)

__version__ = "0.12.0"
__version__ = "0.13.0"
__author__ = "Patrick Lannigan <[email protected]>"
__all__ = [] # type: ignore
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -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]
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = columbo
url = https://github.com/wayfair-incubator/columbo
author = Patrick Lannigan
author_email = [email protected]
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
Expand Down

0 comments on commit af5933d

Please sign in to comment.