Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
willmcgugan committed Jun 28, 2020
1 parent 8ccf553 commit 95ee530
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
1 change: 1 addition & 0 deletions rich/columns.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ def __init__(
self,
renderables: Iterable[RenderableType] = None,
padding: PaddingDimensions = (0, 1),
*,
width: int = None,
expand: bool = False,
equal: bool = False,
Expand Down
1 change: 1 addition & 0 deletions rich/panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ def __init__(
self,
renderable: RenderableType,
box: Box = ROUNDED,
*,
safe_box: bool = True,
expand: bool = True,
style: Union[str, Style] = "none",
Expand Down
1 change: 1 addition & 0 deletions rich/rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ class Rule(JupyterMixin):
def __init__(
self,
title: Union[str, Text] = "",
*,
character: str = None,
style: Union[str, Style] = "rule.line",
) -> None:
Expand Down

0 comments on commit 95ee530

Please sign in to comment.