Skip to content

Commit

Permalink
Merge pull request #97 from wayfair-incubator/bump_version_to_0.10.0
Browse files Browse the repository at this point in the history
Bump version: 0.9.0 → 0.10.0 🎉
  • Loading branch information
fhightower authored Feb 18, 2021
2 parents 1c2272c + 98b6c45 commit c40a1ec
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[bumpversion]
current_version = 0.9.0
current_version = 0.10.0
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<pre_release>[a-z]+))?
serialize =
{major}.{minor}.{patch}-{pre_release}
{major}.{minor}.{patch}
serialize =
{major}.{minor}.{patch}-{pre_release}
{major}.{minor}.{patch}

[bumpversion:file:columbo/__init__.py]

Expand All @@ -19,7 +19,7 @@ replace = version = {new_version}

[bumpversion:part:pre_release]
optional_value = final
values =
values =
final
dev
alpha
Expand Down
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.10.0] - 2021-02-18

### Added

* Python 3.9 support ([#73](https://github.com/wayfair-incubator/columbo/pull/73))
* New `Validator` signature ([#37](https://github.com/wayfair-incubator/columbo/issues/37))

### Changed

* Improved validation for converting question names to command line arguments
* Improved validation for converting question names to command line arguments ([#82](https://github.com/wayfair-incubator/columbo/pull/82))

### Deprecated

* Support for `Validator`s that return `Optional[str]` ([#39](https://github.com/wayfair-incubator/columbo/issues/39))

## [0.9.0] - 2020-12-18

Expand Down
2 changes: 1 addition & 1 deletion columbo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
Validator,
)

__version__ = "0.9.0"
__version__ = "0.10.0"
__author__ = "Patrick Lannigan <plannigan@wayfair.com>"
__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.9.0
# Columbo - 0.10.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 = plannigan@wayfair.com
version = 0.9.0
version = 0.10.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 c40a1ec

Please sign in to comment.