diff --git a/CHANGELOG.md b/CHANGELOG.md index 87f727e..6c8d0e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## 0.3.0 - 2021-02-19 + +### Changed + +- `--help` is now kept in options (it used to be automatically dropped). (Pull #29) + +### Added + +- Add table formatting. (Pulls #25, #30) +- Use `:prog_name:` more consistently in usage. (Pull #24) +- Allow using full command paths in headers. (Pull #36) + +### Fixed + +- Make usage and options headings bold to improve legibility. (Pull #31) + ## 0.2.0 - 2020-12-09 ### Added diff --git a/mkdocs_click/__version__.py b/mkdocs_click/__version__.py index 0e751cc..8670684 100644 --- a/mkdocs_click/__version__.py +++ b/mkdocs_click/__version__.py @@ -1,4 +1,4 @@ # (C) Datadog, Inc. 2020-present # All rights reserved # Licensed under the Apache license (see LICENSE) -__version__ = "0.2.0" +__version__ = "0.3.0"