version bump

This commit is contained in:
Will McGugan 2020-03-13 16:55:08 +00:00
parent f1bde0a821
commit 15df025a5a
2 changed files with 4 additions and 3 deletions

View File

@ -2,8 +2,8 @@
name = "rich"
homepage = "https://github.com/willmcgugan/rich"
documentation = "https://rich.readthedocs.io/en/latest/"
version = "0.7.0"
description = "Render rich text, tables, syntax highlighting, markdown and more to the terminal"
version = "0.7.1"
description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal"
authors = ["Will McGugan <willmcgugan@gmail.com>"]
license = "MIT"
readme = "README.md"

View File

@ -840,7 +840,8 @@ class Console:
color_system = self._color_system
buffer = self._buffer[:]
if self.record:
self._record_buffer.extend(buffer)
with self._record_buffer_lock:
self._record_buffer.extend(buffer)
del self._buffer[:]
for line in Segment.split_and_crop_lines(buffer, self.width, pad=False):
for text, style in line: