version bump

This commit is contained in:
Will McGugan 2020-09-18 15:30:18 +01:00
parent eb7737590d
commit 2a31a31469
3 changed files with 4 additions and 4 deletions

View File

@ -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/),
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
@ -15,7 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- 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 text rendering by fixing internal cache mechanism
- Optimized hash generation for Styles

View File

@ -65,7 +65,7 @@ This allows you to specify the text of the column only. If you want to set other
table = Table(
"Released",
"Title",
Column("Box Office", align="right"),
Column(header="Box Office", align="right"),
title="Star Wars Movies"
)

View File

@ -2,7 +2,7 @@
name = "rich"
homepage = "https://github.com/willmcgugan/rich"
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"
authors = ["Will McGugan <willmcgugan@gmail.com>"]
license = "MIT"