mirror of https://github.com/Textualize/rich.git
version bump
This commit is contained in:
parent
eb7737590d
commit
2a31a31469
|
@ -5,7 +5,7 @@ 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/),
|
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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [7.0.0] - Unreleased
|
## [7.0.0] - 2020-09-18
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Text.tabs_to_spaces was renamed to Text.expand_tabs, which works in place rather than returning a new instance
|
- Text.tabs_to_spaces was renamed to Text.expand_tabs, which works in place rather than returning a new instance
|
||||||
-
|
- Renamed Column.index to Column.\_index
|
||||||
- Optimized Style.combine and Style.chain
|
- Optimized Style.combine and Style.chain
|
||||||
- Optimized text rendering by fixing internal cache mechanism
|
- Optimized text rendering by fixing internal cache mechanism
|
||||||
- Optimized hash generation for Styles
|
- Optimized hash generation for Styles
|
||||||
|
|
|
@ -65,7 +65,7 @@ This allows you to specify the text of the column only. If you want to set other
|
||||||
table = Table(
|
table = Table(
|
||||||
"Released",
|
"Released",
|
||||||
"Title",
|
"Title",
|
||||||
Column("Box Office", align="right"),
|
Column(header="Box Office", align="right"),
|
||||||
title="Star Wars Movies"
|
title="Star Wars Movies"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
name = "rich"
|
name = "rich"
|
||||||
homepage = "https://github.com/willmcgugan/rich"
|
homepage = "https://github.com/willmcgugan/rich"
|
||||||
documentation = "https://rich.readthedocs.io/en/latest/"
|
documentation = "https://rich.readthedocs.io/en/latest/"
|
||||||
version = "6.2.0"
|
version = "7.0.0"
|
||||||
description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal"
|
description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal"
|
||||||
authors = ["Will McGugan <willmcgugan@gmail.com>"]
|
authors = ["Will McGugan <willmcgugan@gmail.com>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
Loading…
Reference in New Issue