mirror of https://github.com/Textualize/rich.git
version bump
This commit is contained in:
parent
f1bde0a821
commit
15df025a5a
|
@ -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"
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue