diff --git a/CHANGELOG.md b/CHANGELOG.md index 3206fe7f..6f6da07e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/docs/source/tables.rst b/docs/source/tables.rst index 47a61a26..957992a6 100644 --- a/docs/source/tables.rst +++ b/docs/source/tables.rst @@ -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" ) diff --git a/pyproject.toml b/pyproject.toml index ec97f67e..994443f1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] license = "MIT"