version bump

This commit is contained in:
Will McGugan 2020-06-28 11:45:14 +01:00
parent 8ccf553bb6
commit 95ee530e05
5 changed files with 16 additions and 1 deletions

View File

@ -5,6 +5,18 @@ 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).
## [3.0.0] - Unreleased
### Changed
- Enabled supported box chars for legacy Windows, and introduce `safe_box` flag
- Disable hyperlinks on legacy Windows
- Constructors for Rule and Panel now have keyword only arguments (reson for major version bump)
### Fixed
- Fixed Table measure
## [2.3.1] - 2020-06-26
### Fixed

View File

@ -2,7 +2,7 @@
name = "rich"
homepage = "https://github.com/willmcgugan/rich"
documentation = "https://rich.readthedocs.io/en/latest/"
version = "2.3.1"
version = "3.0.0"
description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal"
authors = ["Will McGugan <willmcgugan@gmail.com>"]
license = "MIT"

View File

@ -28,6 +28,7 @@ class Columns(JupyterMixin):
self,
renderables: Iterable[RenderableType] = None,
padding: PaddingDimensions = (0, 1),
*,
width: int = None,
expand: bool = False,
equal: bool = False,

View File

@ -38,6 +38,7 @@ class Panel(JupyterMixin):
self,
renderable: RenderableType,
box: Box = ROUNDED,
*,
safe_box: bool = True,
expand: bool = True,
style: Union[str, Style] = "none",

View File

@ -18,6 +18,7 @@ class Rule(JupyterMixin):
def __init__(
self,
title: Union[str, Text] = "",
*,
character: str = None,
style: Union[str, Style] = "rule.line",
) -> None: