mirror of https://github.com/Textualize/rich.git
version bump
This commit is contained in:
parent
8ccf553bb6
commit
95ee530e05
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -18,6 +18,7 @@ class Rule(JupyterMixin):
|
|||
def __init__(
|
||||
self,
|
||||
title: Union[str, Text] = "",
|
||||
*,
|
||||
character: str = None,
|
||||
style: Union[str, Style] = "rule.line",
|
||||
) -> None:
|
||||
|
|
Loading…
Reference in New Issue