From de1e33e5e22b7e221458e300111b4629b41544b0 Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Sun, 24 May 2020 20:58:54 +0100 Subject: [PATCH] changelog tweak --- CHANGELOG.md | 9 ++++++++- rich/panel.py | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 24ef5061..1c34e9e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,14 +5,21 @@ 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/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [1.2.3] - Unreleased +## [1.2.3] - 2020-05-24 ### Added - Added `padding` parameter to Panel - Added 'indeterminate' state when progress bars aren't started + +### Fixed + - Fixed Progress deadlock https://github.com/willmcgugan/rich/issues/90 +### Changed + +- Auto-detect "truecolor" color system when in Windows Terminal + ## [1.2.2] - 2020-05-22 ### Fixed diff --git a/rich/panel.py b/rich/panel.py index 2add8359..99891620 100644 --- a/rich/panel.py +++ b/rich/panel.py @@ -30,7 +30,7 @@ class Panel: width, otherwise it will be sized to fit the contents. Defaults to True. style (str, optional): The style of the border. Defaults to "none". width (Optional[int], optional): Optional width of panel. Defaults to None to auto-detect. - padding (Optional[PaddingDimensions]): Optional padding. Defaults to 0 + padding (Optional[PaddingDimensions]): Optional padding around renderable. Defaults to 0. """ def __init__(