Skip to content

Commit 15df025

Browse files
committed
version bump
1 parent f1bde0a commit 15df025

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
name = "rich"
33
homepage = "https://github.com/willmcgugan/rich"
44
documentation = "https://rich.readthedocs.io/en/latest/"
5-
version = "0.7.0"
6-
description = "Render rich text, tables, syntax highlighting, markdown and more to the terminal"
5+
version = "0.7.1"
6+
description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal"
77
authors = ["Will McGugan <willmcgugan@gmail.com>"]
88
license = "MIT"
99
readme = "README.md"

rich/console.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -840,7 +840,8 @@ def _render_buffer(self) -> str:
840840
color_system = self._color_system
841841
buffer = self._buffer[:]
842842
if self.record:
843-
self._record_buffer.extend(buffer)
843+
with self._record_buffer_lock:
844+
self._record_buffer.extend(buffer)
844845
del self._buffer[:]
845846
for line in Segment.split_and_crop_lines(buffer, self.width, pad=False):
846847
for text, style in line:

0 commit comments

Comments
 (0)