File size: 68,898 Bytes
065fee7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 |
# Changelog
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).
## [13.8.0] - 2024-08-26
### Fixed
- Fixed `Table` rendering of box elements so "footer" elements truly appear at bottom of table, "mid" elements in main table body.
- Fixed styles in Panel when Text objects are used for title https://github.com/Textualize/rich/pull/3401
- Fix pretty repr for `collections.deque` https://github.com/Textualize/rich/pull/2864
- Thread used in progress.track will exit if an exception occurs in a generator https://github.com/Textualize/rich/pull/3402
- Progress track thread is now a daemon thread https://github.com/Textualize/rich/pull/3402
- Fixed cached hash preservation upon clearing meta and links https://github.com/Textualize/rich/issues/2942
- Fixed overriding the `background_color` of `Syntax` not including padding https://github.com/Textualize/rich/issues/3295
- Fixed pretty printing of dataclasses with a default repr in Python 3.13 https://github.com/Textualize/rich/pull/3455
- Fixed selective enabling of highlighting when disabled in the `Console` https://github.com/Textualize/rich/issues/3419
- Fixed BrokenPipeError writing an error message https://github.com/Textualize/rich/pull/3468
- Fixed superfluous space above Markdown tables https://github.com/Textualize/rich/pull/3469
- Fixed issue with record and capture interaction https://github.com/Textualize/rich/pull/3470
- Fixed control codes breaking in `append_tokens` https://github.com/Textualize/rich/pull/3471
- Fixed exception pretty printing a dataclass with missing fields https://github.com/Textualize/rich/pull/3472
### Changed
- `RichHandler` errors and warnings will now use different colors (red and yellow) https://github.com/Textualize/rich/issues/2825
- Removed the empty line printed in jupyter while using `Progress` https://github.com/Textualize/rich/pull/2616
- Running tests in environment with `FORCE_COLOR` or `NO_COLOR` environment variables
- ansi decoder will now strip problematic private escape sequences (like `\x1b7`) https://github.com/Textualize/rich/pull/3278/
- Tree's ASCII_GUIDES and TREE_GUIDES constants promoted to class attributes
### Added
- Adds a `case_sensitive` parameter to `prompt.Prompt`. This determines if the
response is treated as case-sensitive. Defaults to `True`.
- Added `Console.on_broken_pipe` https://github.com/Textualize/rich/pull/3468
## [13.7.1] - 2024-02-28
### Fixed
- Updated the widths of some characters https://github.com/Textualize/rich/pull/3289
## [13.7.0] - 2023-11-15
### Added
- Adds missing parameters to Panel.fit https://github.com/Textualize/rich/issues/3142
### Fixed
- Some text goes missing during wrapping when it contains double width characters https://github.com/Textualize/rich/issues/3176
- Ensure font is correctly inherited in exported HTML https://github.com/Textualize/rich/issues/3104
- Fixed typing for `FloatPrompt`.
## [13.6.0] - 2023-09-30
### Added
- Added Python 3.12 to classifiers.
## [13.5.3] - 2023-09-17
### Fixed
- Markdown table rendering issue with inline styles and links https://github.com/Textualize/rich/issues/3115
- Fix Markdown code blocks on a light background https://github.com/Textualize/rich/issues/3123
## [13.5.2] - 2023-08-01
### Fixed
- Fixed Text.expand_tabs assertion error
## [13.5.1] - 2023-07-31
### Fixed
- Fix tilde character (`~`) not included in link regex when printing to console https://github.com/Textualize/rich/issues/3057
## [13.5.0] - 2023-07-29
### Fixed
- Fixed Text.expand_tabs not expanding spans.
- Fixed TimeElapsedColumn from showing negative.
- Fix for escaping strings with a trailing backslash https://github.com/Textualize/rich/issues/2987
- Fixed exception in Markdown with partial table https://github.com/Textualize/rich/issues/3053
- Fixed the HTML export template so that the `<html>` tag comes before the `<head>` tag https://github.com/Textualize/rich/issues/3021
- Fixed issue with custom classes overwriting `__eq__` https://github.com/Textualize/rich/issues/2875
- Fix rich.pretty.install breakage in iPython https://github.com/Textualize/rich/issues/3013
### Added
- Added Text.extend_style method.
- Added Span.extend method.
### Changed
- Text.tab_size now defaults to `None` to indicate that Console.tab_size should be used.
## [13.4.2] - 2023-06-12
### Changed
- Relaxed markdown-it-py dependency
## [13.4.1] - 2023-05-31
### Fixed
- Fixed typing extensions import in markdown https://github.com/Textualize/rich/issues/2979
## [13.4.0] - 2023-05-31
### Added
- Added support for tables in `Markdown` https://github.com/Textualize/rich/pull/2977
## [13.3.5] - 2023-04-27
### Fixed
- Fixed italic indent guides in SVG output
## [13.3.4] - 2023-04-12
### Fixed
- Fixed for `is_terminal` ignoring FORCE_COLOR https://github.com/Textualize/rich/pull/2923
## [13.3.3] - 2023-02-27
### Added
- Added Style.clear_meta_and_links
## [13.3.2] - 2023-02-04
### Fixed
- Reversed `pre` and `code` tags in base HTML format https://github.com/Textualize/rich/pull/2642
- Fix syntax error when building with nuitka https://github.com/Textualize/rich/pull/2635
- Fixed pretty printing of empty dataclass https://github.com/Textualize/rich/issues/2819
- Use `Console(stderr=True)` in `rich.traceback.install` to support io redirection.
- Fixes superfluous spaces in html output https://github.com/Textualize/rich/issues/2832
- Fixed duplicate output in Jupyter https://github.com/Textualize/rich/pulls/2804
- Filter ANSI character-encoding-change codes in `Text.from_ansi` parser
- Fixes traceback failing when a frame filename is unreadable https://github.com/Textualize/rich/issues/2821
- Fix for live update rendering console markup https://github.com/Textualize/rich/issues/2726
### Added
- Added Polish README
### Changed
- `rich.progress.track()` will now show the elapsed time after finishing the task https://github.com/Textualize/rich/pull/2659
## [13.3.1] - 2023-01-28
### Fixed
- Fixed truecolor to eight bit color conversion https://github.com/Textualize/rich/pull/2785
## [13.3.0] - 2023-01-27
### Fixed
- Fixed failing tests due to Pygments dependency https://github.com/Textualize/rich/issues/2757
- Relaxed ipywidgets https://github.com/Textualize/rich/issues/2767
### Added
- Added `encoding` parameter in `Theme.read`
## [13.2.0] - 2023-01-19
### Changed
- Switch Markdown parsing from commonmark to markdown-it-py https://github.com/Textualize/rich/pull/2439
## [13.1.0] - 2023-01-14
### Fixed
- Fixed wrong filenames in Jupyter tracebacks https://github.com/Textualize/rich/issues/2271
### Added
- Added locals_hide_dunder and locals_hide_sunder to Tracebacks, to hide double underscore and single underscore locals. https://github.com/Textualize/rich/pull/2754
### Changed
- Tracebacks will now hide double underscore names from locals by default. Set `locals_hide_dunder=False` to restore previous behaviour.
## [13.0.1] - 2023-01-06
### Fixed
- Fixed issue with Segment.split_cells for mixed single and double cell widths
## [13.0.0] - 2022-12-30
### Fixed
- Reversed `pre` and `code` tags in base HTML format https://github.com/Textualize/rich/pull/2642
- Improved detection of `attrs` library, that isn't confused by the presence of the `attr` library.
- Fixed issue with `locals_max_length` parameter not being respected in Traceback https://github.com/Textualize/rich/issues/2649
- Handling of broken `fileno` made more robust. Fixes https://github.com/Textualize/rich/issues/2645
- Fixed missing `fileno` on FileProxy
### Fixed
- Fix type of `spinner_style` argument in `Console.status` https://github.com/Textualize/rich/pull/2613.
### Changed
- Bumped minimum Python version to 3.7 https://github.com/Textualize/rich/pull/2567
- Pretty-printing of "tagged" `__repr__` results is now greedy when matching tags https://github.com/Textualize/rich/pull/2565
- `progress.track` now supports deriving total from `__length_hint__`
### Added
- Add type annotation for key_separator of pretty.Node https://github.com/Textualize/rich/issues/2625
## [12.6.0] - 2022-10-02
### Added
- Parse ANSI escape sequences in pretty repr https://github.com/Textualize/rich/pull/2470
- Add support for `FORCE_COLOR` env var https://github.com/Textualize/rich/pull/2449
- Allow a `max_depth` argument to be passed to the `install()` hook https://github.com/Textualize/rich/issues/2486
- Document using `None` as name in `__rich_repr__` for tuple positional args https://github.com/Textualize/rich/pull/2379
- Add `font_aspect_ratio` parameter in SVG export https://github.com/Textualize/rich/pull/2539/files
- Added `Table.add_section` method. https://github.com/Textualize/rich/pull/2544
### Fixed
- Handle stdout/stderr being null https://github.com/Textualize/rich/pull/2513
- Fix NO_COLOR support on legacy Windows https://github.com/Textualize/rich/pull/2458
- Fix pretty printer handling of cyclic references https://github.com/Textualize/rich/pull/2524
- Fix missing `mode` property on file wrapper breaking uploads via `requests` https://github.com/Textualize/rich/pull/2495
- Fix mismatching default value of parameter `ensure_ascii` https://github.com/Textualize/rich/pull/2538
- Remove unused height parameter in `Layout` class https://github.com/Textualize/rich/pull/2540
- Fixed exception in Syntax.__rich_measure__ for empty files
### Changed
- Removed border from code blocks in Markdown
## [12.5.2] - 2022-07-18
### Added
- Add Turkish Readme.
## [12.5.1] - 2022-07-11
### Fixed
- Fixed missing typing extensions dependency on 3.9 https://github.com/Textualize/rich/issues/2386
- Fixed Databricks Notebook is not detected as Jupyter environment. https://github.com/Textualize/rich/issues/2422
## [12.5.0] - 2022-07-11
### Added
- Environment variables `JUPYTER_COLUMNS` and `JUPYTER_LINES` to control width and height of console in Jupyter
- Markdown friendly `Box` style, `MARKDOWN`, for rendering tables ready to copy into markdown files
- `inspect` will prefix coroutine functions with `async def`
- `Style.__add__` will no longer return `NotImplemented`
- Remove rich.\_lru_cache
### Changed
- Default width of Jupyter console size is increased to 115
- Optimized Segment.divide
### Fixed
- Fix Rich clobbering cursor style on Windows https://github.com/Textualize/rich/pull/2339
- Fix text wrapping edge case https://github.com/Textualize/rich/pull/2296
- Allow exceptions that are raised while a Live is rendered to be displayed and/or processed https://github.com/Textualize/rich/pull/2305
- Fix crashes that can happen with `inspect` when docstrings contain some special control codes https://github.com/Textualize/rich/pull/2294
- Fix edges used in first row of tables when `show_header=False` https://github.com/Textualize/rich/pull/2330
- Fix interaction between `Capture` contexts and `Console(record=True)` https://github.com/Textualize/rich/pull/2343
- Fixed hash issue in Styles class https://github.com/Textualize/rich/pull/2346
- Fixed bug in `Segment.split_and_crop_lines`
## [12.4.4] - 2022-05-24
### Changed
- Added clipping per line to SVG output to avoid box characters overlapping
- Optimized SVG output
## [12.4.3] - 2022-05-23
### Changed
- Further tweaks to SVG character matrix
- Added clip rect to SVG to prevent box characters overlapping bottom of terminal
## [12.4.2] - 2022-05-23
### Fixed
- Fix for SVG on Firefox
### Changed
- Removed excess margin from SVG, tweaked cell sizes to better render block characters
## [12.4.1] - 2022-05-08
### Fixed
- Fix for default background color in SVG export https://github.com/Textualize/rich/issues/2260
### Changed
- Added a keyline around SVG terminals which is visible on dark backgrounds
### Changed
- Added a keyline around SVG terminals which is visible on dark backgrounds
## [12.4.0] - 2022-05-07
### Changed
- Rebuilt SVG export to create a simpler SVG that is more portable
- Fix render_lines crash when render height was negative https://github.com/Textualize/rich/pull/2246
- Make objects from `rich.progress.open` forward the name of the internal handle https://github.com/Textualize/rich/pull/2254
### Added
- Add `padding` to Syntax constructor https://github.com/Textualize/rich/pull/2247
## [12.3.0] - 2022-04-26
### Added
- Ability to change terminal window title https://github.com/Textualize/rich/pull/2200
- Added show_speed parameter to progress.track which will show the speed when the total is not known
- Python blocks can now opt out from being rendered in tracebacks's frames, by setting a `_rich_traceback_omit = True` in their local scope https://github.com/Textualize/rich/issues/2207
### Fixed
- Fall back to `sys.__stderr__` on POSIX systems when trying to get the terminal size (fix issues when Rich is piped to another process)
- Fixed markup escaping issue https://github.com/Textualize/rich/issues/2187
- Safari - Box appearing around SVG export https://github.com/Textualize/rich/pull/2201
- Fixed recursion error in Jupyter progress bars https://github.com/Textualize/rich/issues/2047
- Complex numbers are now identified by the highlighter https://github.com/Textualize/rich/issues/2214
- Fix crash on IDLE and forced is_terminal detection to False because IDLE can't do escape codes https://github.com/Textualize/rich/issues/2222
- Fixed missing blank line in traceback rendering https://github.com/Textualize/rich/issues/2206
- Fixed running Rich with the current working dir was deleted https://github.com/Textualize/rich/issues/2197
### Changed
- Setting `total=None` on progress is now possible, and will display pulsing animation
- Micro-optimization for Segment.divide
## [12.2.0] - 2022-04-05
### Changed
- Bumped typing-extensions minimum to 4.0.0
- Bumped minimum Python version to 3.6.3
## [12.1.0] - 2022-04-03
### Added
- Progress.open and Progress.wrap_file method to track the progress while reading from a file or file-like object https://github.com/textualize/rich/pull/1759
- SVG export functionality https://github.com/Textualize/rich/pull/2101
- Adding Indonesian translation
### Fixed
- Add missing `end` keyword argument to `Text.from_markup` https://github.com/Textualize/rich/pull/2095
- Fallback to text lexer when no lexer guessed https://github.com/Textualize/rich/pull/2133
- Fixed issue with decoding ANSI reset https://github.com/Textualize/rich/issues/2112
## [12.0.1] - 2022-03-22
### Changed
- Improve performance of cell_length https://github.com/Textualize/rich/pull/2061
- Improve performance of chop_cells https://github.com/Textualize/rich/pull/2077
### Fixed
- Fix capturing stdout on legacy Windows https://github.com/Textualize/rich/pull/2066
## [12.0.0] - 2022-03-10
### Added
- Added options to TimeRemainingColumn to render a compact time format and render elapsed time when a task is
finished. https://github.com/Textualize/rich/pull/1992
- Added ProgressColumn `MofNCompleteColumn` to display raw `completed/total` column (similar to DownloadColumn,
but displays values as ints, does not convert to floats or add bit/bytes units).
https://github.com/Textualize/rich/pull/1941
- Replace Colorama with win32 renderer https://github.com/Textualize/rich/pull/1993
- Add support for namedtuples to `Pretty` https://github.com/Textualize/rich/pull/2031
### Fixed
- In Jupyter mode make the link target be set to "\_blank"
- Fix some issues with markup handling around "[" characters https://github.com/Textualize/rich/pull/1950
- Fix syntax lexer guessing.
- Fixed Pretty measure not respecting expand_all https://github.com/Textualize/rich/issues/1998
- Collapsed definitions for single-character spinners, to save memory and reduce import time.
- Fix print_json indent type in `__init__.py`
- Fix error when inspecting object defined in REPL https://github.com/Textualize/rich/pull/2037
- Fix incorrect highlighting of non-indented JSON https://github.com/Textualize/rich/pull/2038
- Fixed height reset in complex renderables https://github.com/Textualize/rich/issues/2042
### Changed
- Improved support for enum.Flag in ReprHighlighter https://github.com/Textualize/rich/pull/1920
- Tree now respects justify=None, i.e. won't pad to right https://github.com/Textualize/rich/issues/1690
- Removed rich.tabulate which was marked for deprecation
- Deprecated rich.align.AlignValues in favor of AlignMethod
## [11.2.0] - 2022-02-08
### Added
- Add support for US spelling of "gray" in ANSI color names https://github.com/Textualize/rich/issues/1890
- Added `rich.diagnose.report` to expose environment debugging logic as function https://github.com/Textualize/rich/pull/1917
- Added classmethod `Progress.get_default_columns()` to get the default list of progress bar columns https://github.com/Textualize/rich/pull/1894
### Fixed
- Fixed performance issue in measuring text
### Fixed
- Fixed test failures on PyPy3 https://github.com/Textualize/rich/pull/1904
## [11.1.0] - 2022-01-28
### Added
- Workaround for edge case of object from Faiss with no `__class__` https://github.com/Textualize/rich/issues/1838
- Add Traditional Chinese readme
- Add `Syntax.guess_lexer`, add support for more lexers (e.g. Django templates etc.) https://github.com/Textualize/rich/pull/1869
- Add `lexer` parameter to `Syntax.from_path` to allow for overrides https://github.com/Textualize/rich/pull/1873
### Fixed
- Workaround for edge case of object from Faiss with no `__class__` https://github.com/Textualize/rich/issues/1838
- Ensure `Syntax` always justifies left https://github.com/Textualize/rich/pull/1872
- Handle classes in inspect when methods=True https://github.com/Textualize/rich/pull/1874
## [11.0.0] - 2022-01-09
### Added
- Added max_depth arg to pretty printing https://github.com/Textualize/rich/issues/1585
- Added `vertical_align` to Table.add_row https://github.com/Textualize/rich/issues/1590
### Fixed
- Fixed issue with pretty repr in jupyter notebook https://github.com/Textualize/rich/issues/1717
- Fix Traceback theme defaults override user supplied styles https://github.com/Textualize/rich/issues/1786
### Changed
- **breaking** Deprecated rich.console.RenderGroup, now named rich.console.Group
- **breaking** `Syntax.__init__` parameter `lexer_name` renamed to `lexer`
- Syntax constructor accepts both str and now a pygments lexer https://github.com/Textualize/rich/pull/1748
## [10.16.2] - 2021-01-02
### Fixed
- Fixed @ not being escaped in markup
## [10.16.1] - 2021-12-15
### Fixed
- Fixed issues with overlapping tags https://github.com/textualize/rich/issues/1755
## [10.16.0] - 2021-12-12
### Fixed
- Double print of progress bar in Jupyter https://github.com/textualize/rich/issues/1737
### Added
- Added Text.markup property https://github.com/textualize/rich/issues/1751
## [10.15.2] - 2021-12-02
### Fixed
- Deadlock issue https://github.com/textualize/rich/issues/1734
## [10.15.1] - 2021-11-29
### Fixed
- Reverted thread-safety fix for Live that introduced deadlock potential
## [10.15.0] - 2021-11-28
### Added
- Added dynamic_progress.py to examples
- Added ConsoleOptions.update_height
- Fixed Padding not respecting height
### Changed
- Some optimizations for simple strings (with only single cell widths)
### Fixed
- Fixed issue with progress bar not rendering markup https://github.com/textualize/rich/issues/1721
- Fixed race condition when exiting Live https://github.com/textualize/rich/issues/1530
## [10.14.0] - 2021-11-16
### Fixed
- Fixed progress speed not updating when total doesn't change
- Fixed superfluous new line in Status https://github.com/textualize/rich/issues/1662
- Fixed Windows legacy width again
- Fixed infinite loop in set_cell_size https://github.com/textualize/rich/issues/1682
### Added
- Added file protocol to URL highlighter https://github.com/textualize/rich/issues/1681
- Added rich.protocol.rich_cast
### Changed
- Allowed `__rich__` to work recursively
- Allowed Text classes to work with sep in print https://github.com/textualize/rich/issues/1689
### Added
- Added a `rich.text.Text.from_ansi` helper method for handling pre-formatted input strings https://github.com/textualize/rich/issues/1670
## [10.13.0] - 2021-11-07
### Added
- Added json.dumps parameters to print_json https://github.com/textualize/rich/issues/1638
### Fixed
- Fixed an edge case bug when console module try to detect if they are in a tty at the end of a pytest run
- Fixed a bug where logging handler raises an exception when running with pythonw (related to https://bugs.python.org/issue13807)
- Fixed issue with TERM env vars that have more than one hyphen https://github.com/textualize/rich/issues/1640
- Fixed missing new line after progress bar when terminal is not interactive https://github.com/textualize/rich/issues/1606
- Fixed exception in IPython when disabling pprint with %pprint https://github.com/textualize/rich/issues/1646
- Fixed issue where values longer than the console width produced invalid JSON https://github.com/textualize/rich/issues/1653
- Fixes trailing comma when pretty printing dataclass with last field repr=False https://github.com/textualize/rich/issues/1599
## Changed
- Markdown codeblocks now word-wrap https://github.com/textualize/rich/issues/1515
## [10.12.0] - 2021-10-06
### Updated
- Official Py3.10 release
### Fixed
- Fixed detection of custom repr when pretty printing dataclasses
## [10.11.0] - 2021-09-24
### Added
- Added `suppress` parameter to tracebacks
- Added `max_frames` parameter to tracebacks
## [10.10.0] - 2021-09-18
### Added
- Added stdin support to `rich.json`
### Fixed
- Fixed pretty printing of objects with fo magic with **getattr** https://github.com/textualize/rich/issues/1492
## [10.9.0] - 2021-08-29
### Added
- Added data parameter to print_json method / function
- Added an --indent parameter to python -m rich.json
### Changed
- Changed default indent of JSON to 2 (down from 4)
- Changed highlighting of JSON keys to new style (bold blue)
## [10.8.0] - 2021-08-28
### Added
- Added Panel.subtitle
- Added Panel.subtitle_align
- Added rich.json.JSON
- Added rich.print_json and Console.print_json
### Fixed
- Fixed a bug where calling `rich.reconfigure` within a `pytest_configure` hook would lead to a crash
- Fixed highlight not being passed through options https://github.com/textualize/rich/issues/1404
## [10.7.0] - 2021-08-05
### Added
- Added Text.apply_meta
- Added meta argument to Text.assemble
- Added Style.from_meta
- Added Style.on
- Added Text.on
### Changed
- Changed `RenderGroup` to `Group` and `render_group` to `group` (old names remain for compatibility but will be deprecated in the future)
- Changed `rich.repr.RichReprResult` to `rich.repr.Result` (old names remain for compatibility but will be deprecated in the future)
- Changed meta serialization to use pickle rather than marshal to permit callables
## [10.6.0] - 2021-07-12
### Deprecated
- Added deprecation warning for tabulate_mapping which will be removed in v11.0.0
### Added
- Added precision argument to filesize.decimal
- Added separator argument to filesize.decimal
- Added \_rich_traceback_guard to Traceback
- Added emoji_variant to Console
- Added -emoji and -text variant selectors to emoji code
### Fixed
- Fixed issue with adjoining color tags https://github.com/textualize/rich/issues/1334
### Changed
- Changed Console.size to use unproxied stdin and stdout
## [10.5.0] - 2021-07-05
### Fixed
- Fixed Pandas objects not pretty printing https://github.com/textualize/rich/issues/1305
- Fixed https://github.com/textualize/rich/issues/1256
- Fixed typing with rich.repr.auto decorator
- Fixed repr error formatting https://github.com/textualize/rich/issues/1326
### Added
- Added new_line_start argument to Console.print
- Added Segment.divide method
- Added Segment.split_cells method
- Added segment.SegmentLines class
## [10.4.0] - 2021-06-18
### Added
- Added Style.meta
- Added rich.repr.auto decorator
### Fixed
- Fixed error pretty printing classes with special **rich_repr** method
## [10.3.0] - 2021-06-09
### Added
- Added Console.size setter
- Added Console.width setter
- Added Console.height setter
- Added angular style Rich reprs
- Added an IPython extension. Load via `%load_ext rich`
### Changed
- Changed the logic for retrieving the calling frame in console logs to a faster one for the Python implementations that support it.
## [10.2.2] - 2021-05-19
### Fixed
- Fixed status not rendering console markup https://github.com/textualize/rich/issues/1244
## [10.2.1] - 2021-05-17
### Fixed
- Fixed panel in Markdown exploding https://github.com/textualize/rich/issues/1234
## [10.2.0] - 2021-05-12
### Added
- Added syntax for call, i.e. "Foo(bar)"
- Added Console.measure as a convenient alias for Measurement.get
- Added support for pretty printing attrs objects
- Added mappingproxy to pretty print
- Added UserDict and UserList support to pretty printer
### Changed
- Changed colorama init to set strip=False
- Changed highlighter for False, True, None to not match in the middle of a word. i.e. NoneType is no longer highlighted as None
### Fixed
- Fixed initial blank lines removed from Syntax https://github.com/textualize/rich/issues/1214
## [10.1.0] - 2021-04-03
### Fixed
- Fixed support for jupyter qtconsole and similar Jupyter environments
## [10.0.1] - 2021-03-30
### Fixed
- Fixed race condition that duplicated lines in progress https://github.com/textualize/rich/issues/1144
## [10.0.0] - 2021-03-27
### Changed
- Made pydoc import lazy as at least one use found it slow to import https://github.com/textualize/rich/issues/1104
- Modified string highlighting to not match in the middle of a word, so that apostrophes are not considered strings
- New way of encoding control codes in Segment
- New signature for Control class
- Changed Layout.split to use new Splitter class
- Improved layout.tree
- Changed default theme color for repr.number to cyan
- `__rich_measure__` signature changed to accept ConsoleOptions rather than max_width
- `text` parameter to rich.spinner.Spinner changed to RenderableType
### Added
- Added `__rich_repr__` protocol method to Pretty
- Added rich.region.Region
- Added ConsoleOptions.update_dimensions
- Added rich.console.ScreenUpdate
- Added Console.is_alt_screen
- Added Control.segment, Control.bell, Control.home, Control.move_to, Control.clear, Control.show_cursor, Control.alt_screen
- Added Console.update_screen and Console.update_screen_lines
- Added Layout.add_split, Layout.split_column, Layout.split_row, layout.refresh
- Added new Rich repr protocol `__rich_repr__`
### Fixed
- Fixed table style taking precedence over row style https://github.com/textualize/rich/issues/1129
- Fixed incorrect measurement of Text with new lines and whitespace https://github.com/textualize/rich/issues/1133
- Made type annotations consistent for various `total` keyword arguments in `rich.progress` and rich.`progress_bar`
- Disabled Progress no longer displays itself when starting https://github.com/textualize/rich/pull/1125
- Animations no longer reset when updating rich.status.Status
## [9.13.0] - 2021-03-06
### Added
- Pretty printer now supports dataclasses
### Fixed
- Fixed Syntax background https://github.com/textualize/rich/issues/1088
- Fix for double tracebacks when no formatter https://github.com/textualize/rich/issues/1079
### Changed
- Added ws and wss to url highlighter
## [9.12.4] - 2021-03-01
### Fixed
- Fixed custom formatters with rich tracebacks in RichHandler https://github.com/textualize/rich/issues/1079
### Changed
- Allow highly compressed table cells to go to 0 width
- Optimization to remove empty styles in various places
## [9.12.3] - 2021-02-28
### Changed
- Optimized Padding
## [9.12.2] - 2021-02-27
### Added
- Added ConsoleOptions.copy
### Changed
- Optimized ConsoleOptions.update
## [9.12.1] - 2021-02-27
### Fixed
- Fixed deadlock in Progress https://github.com/textualize/rich/issues/1061
### Added
- Added Task.finished_speed
### Changed
- Froze TransferSpeedColumn speed when task is finished
- Added SIGINT handler to downloader.py example
- Optimization for large tables
## [9.12.0] - 2021-02-24
### Fixed
- Fixed issue with Syntax and missing lines in Layout https://github.com/textualize/rich/issues/1050
- Fixed issue with nested markdown elements https://github.com/textualize/rich/issues/1036
- Fixed new lines not invoking render hooks https://github.com/textualize/rich/issues/1052
- Fixed Align setting height to child https://github.com/textualize/rich/issues/1057
### Changed
- Printing a table with no columns now result in a blank line https://github.com/textualize/rich/issues/1044
### Added
- Added height to Panel
## [9.11.1] - 2021-02-20
### Fixed
- Fixed table with expand=False not expanding when justify="center"
- Fixed single renderable in Layout not respecting height
- Fixed COLUMNS and LINES env var https://github.com/textualize/rich/issues/1019
- Layout now respects minimum_size when fixes sizes are greater than available space
- HTML export now changes link underline score to match terminal https://github.com/textualize/rich/issues/1009
### Changed
- python -m rich.markdown and rich.syntax show usage with no file
### Added
- Added height parameter to Layout
- Added python -m rich.segment
## [9.11.0] - 2021-02-15
### Fixed
- Fixed error message for tracebacks with broken `__str__` https://github.com/textualize/rich/issues/980
- Fixed markup edge case https://github.com/textualize/rich/issues/987
### Added
- Added cheeky sponsorship request to test card
- Added `quiet` argument to Console constructor
- Added support for a callback function to format timestamps (allows presentation of milliseconds)
- Added Console.set_alt_screen and Console.screen
- Added height to ConsoleOptions
- Added `vertical` parameter to Align
- Added Layout class
### Changed
- Pretty.overflow now defaults to None
- Panel now respects options.height
- Traceback lexer defaults to Python if no extension on source
- Added ConsoleDimensions size attribute to ConsoleOptions so that size can't change mid-render
## [9.10.0] - 2021-01-27
### Changed
- Some optimizations for Text
- Further optimized Tracebacks by not tokenizing code more that necessary
- Table Column.header_style and Column.footer_style are now added to Table header/footer style
## [9.9.0] - 2021-01-23
### Changed
- Extended Windows palette to 16 colors
- Modified windows palette to Windows 10 colors
- Change regex for attrib_name to be more performant
- Optimized traceback generation
### Fixed
- Fix double line tree guides on Windows
- Fixed Tracebacks ignoring initial blank lines
- Partial fix for tracebacks not finding source after chdir
- Fixed error message when code in tracebacks doesn't have an extension https://github.com/textualize/rich/issues/996
### Added
- Added post_style argument to Segment.apply_style
## [9.8.2] - 2021-01-15
### Fixed
- Fixed deadlock in live https://github.com/textualize/rich/issues/927
## [9.8.1] - 2021-01-13
### Fixed
- Fixed rich.inspect failing with attributes that claim to be callable but aren't https://github.com/textualize/rich/issues/916
## [9.8.0] - 2021-01-11
### Added
- Added **rich_measure** for tree
- Added rich.align.VerticalCenter
### Changed
- The `style` argument on Align now applies to background only
- Changed display of progress bars in no_color mode for clarity
- Console property `size` will fall back to getting the terminal size of stdout it stdin fails, this allows size to be correctly determined when piping
### Fixed
- Fixed panel cropping when shrunk too bar
- Allow passing markdown over STDIN when using `python -m rich.markdown`
- Fix printing MagicMock.mock_calls https://github.com/textualize/rich/issues/903
## [9.7.0] - 2021-01-09
### Added
- Added rich.tree
- Added no_color argument to Console
## [9.6.2] - 2021-01-07
### Fixed
- Fixed markup escaping edge case https://github.com/textualize/rich/issues/878
- Double tag escape, i.e. `"\\[foo]"` results in a backslash plus `[foo]` tag
- Fixed header_style not applying to headers in positional args https://github.com/textualize/rich/issues/953
## [9.6.1] - 2020-12-31
### Fixed
- Fixed encoding error on Windows when loading code for Tracebacks
## [9.6.0] - 2020-12-30
### Changed
- MarkupError exception raise from None to omit internal exception
- Factored out RichHandler.render and RichHandler.render_message for easier extending
- Display pretty printed value in rich.inspect
### Added
- Added Progress.TimeElapsedColumn
- Added IPython support to pretty.install
### Fixed
- Fixed display of locals in Traceback for stdin
## [9.5.1] - 2020-12-19
### Fixed
- Fixed terminal size detection on Windows https://github.com/textualize/rich/issues/836
- Fixed hex number highlighting
## [9.5.0] - 2020-12-18
### Changed
- If file is not specified on Console then the Console.file will return the current sys.stdout. Prior to 9.5.0 sys.stdout was cached on the Console, which could break code that wrapped sys.stdout after the Console was constructed.
- Changed `Color.__str__` to not include ansi codes
- Changed Console.size to get the terminal dimensions via sys.stdin. This means that if you set file to be an io.StringIO file then the width will be set to the current terminal dimensions and not a default of 80.
### Added
- Added stderr parameter to Console
- Added rich.reconfigure
- Added `Color.__rich__`
- Added Console.soft_wrap
- Added Console.style parameter
- Added Table.highlight parameter to enable highlighting of cells
- Added Panel.highlight parameter to enable highlighting of panel title
- Added highlight to ConsoleOptions
### Fixed
- Fixed double output in rich.live https://github.com/textualize/rich/issues/485
- Fixed Console.out highlighting not reflecting defaults https://github.com/textualize/rich/issues/827
- FileProxy now raises TypeError for empty non-str arguments https://github.com/textualize/rich/issues/828
## [9.4.0] - 2020-12-12
### Added
- Added rich.live https://github.com/textualize/rich/pull/382
- Added align parameter to Rule and Console.rule
- Added rich.Status class and Console.status
- Added getitem to Text
- Added style parameter to Console.log
- Added rich.diagnose command
### Changed
- Table.add_row style argument now applies to entire line and not just cells
- Added end_section parameter to Table.add_row to force a line underneath row
## Fixed
- Fixed suppressed traceback context https://github.com/textualize/rich/issues/468
## [9.3.0] - 2020-12-1
### Added
- Added get_datetime parameter to Console, to allow for repeatable tests
- Added get_time parameter to Console
- Added rich.abc.RichRenderable
- Added expand_all to rich.pretty.install()
- Added locals_max_length, and locals_max_string to Traceback and logging.RichHandler
- Set defaults of max_length and max_string for Traceback to 10 and 80
- Added disable argument to Progress
### Changed
- Reformatted test card (python -m rich)
### Fixed
- Fixed redirecting of stderr in Progress
- Fixed broken expanded tuple of one https://github.com/textualize/rich/issues/445
- Fixed traceback message with `from` exceptions
- Fixed justify argument not working in console.log https://github.com/textualize/rich/issues/460
## [9.2.0] - 2020-11-08
### Added
- Added tracebacks_show_locals parameter to RichHandler
- Added max_string to Pretty
- Added rich.ansi.AnsiDecoder
- Added decoding of ansi codes to captured stdout in Progress
- Added expand_all to rich.pretty.pprint
### Changed
- Applied dim=True to indent guide styles
- Factored out RichHandler.get_style_and_level to allow for overriding in subclasses
- Hid progress bars from html export
- rich.pretty.pprint now soft wraps
## [9.1.0] - 2020-10-23
### Added
- Added Text.with_indentation_guide
- Added Text.detect_indentation
- Added Pretty.indent_guides
- Added Syntax.indent_guides
- Added indent_guides parameter on pretty.install
- Added rich.pretty.pprint
- Added max_length to Pretty
### Changed
- Enabled indent guides on Tracebacks
### Fixed
- Fixed negative time remaining in Progress bars https://github.com/textualize/rich/issues/378
## [9.0.1] - 2020-10-19
### Fixed
- Fixed broken ANSI codes in input on windows legacy https://github.com/textualize/rich/issues/393
## [9.0.0] - 2020-10-18
### Fixed
- Progress download column now displays decimal units
### Added
- Support for Python 3.9
- Added legacy_windows to ConsoleOptions
- Added ascii_only to ConsoleOptions
- Added box.SQUARE_DOUBLE_HEAD
- Added highlighting of EUI-48 and EUI-64 (MAC addresses)
- Added Console.pager
- Added Console.out
- Added binary_units in progress download column
- Added Progress.reset
- Added Style.background_style property
- Added Bar renderable https://github.com/textualize/rich/pull/361
- Added Table.min_width
- Added table.Column.min_width and table.Column.max_width, and same to Table.add_column
### Changed
- Dropped box.get_safe_box function in favor of Box.substitute
- Changed default padding in Panel from 0 to (0, 1) https://github.com/textualize/rich/issues/385
- Table with row_styles will extend background color between cells if the box has no vertical dividerhttps://github.com/textualize/rich/issues/383
- Changed default of fit kwarg in render_group() from False to True
- Renamed rich.bar to rich.progress_bar, and Bar class to ProgressBar, rich.bar is now the new solid bar class
### Fixed
- Fixed typo in `Style.transparent_background` method name.
## [8.0.0] - 2020-10-03
### Added
- Added Console.bell method
- Added Set to types that Console.print will automatically pretty print
- Added show_locals to Traceback
- Added theme stack mechanism, see Console.push_theme and Console.pop_theme
### Changed
- Changed Style.empty to Style.null to better reflect what it does
- Optimized combining styles involving a null style
- Change error messages in Style.parse to read better
### Fixed
- Fixed Table.\_\_rich_measure\_\_
- Fixed incorrect calculation of fixed width columns
## [7.1.0] - 2020-09-26
### Added
- Added Console.begin_capture, Console.end_capture and Console.capture
- Added Table.title_justify and Table.caption_justify https://github.com/textualize/rich/issues/301
### Changed
- Improved formatting of exceptions
- Enabled Rich exceptions in logging https://github.com/taliraj
- UTF-8 encoding is now mentioned in HTML head section
### Removed
- Removed line_numbers argument from traceback.install, which was undocumented and did nothing
## [7.0.0] - 2020-09-18
### Added
- New ansi_dark and ansi_light themes
- Added Text.append_tokens for fast appending of string + Style pairs
- Added Text.remove_suffix
- Added Text.append_tokens
### 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
## [6.2.0] - 2020-09-13
### Added
- Added inline code highlighting to Markdown
## [6.1.2] - 2020-09-11
### Added
- Added ipv4 and ipv6 to ReprHighlighter
### Changed
- The `#` sign is included in url highlighting
### Fixed
- Fixed force-color switch in rich.syntax and rich.markdown commands
## [6.1.1] - 2020-09-07
### Changed
- Restored "def" in inspect signature
## [6.1.0] - 2020-09-07
### Added
- New inspect module
- Added os.\_Environ to pretty print
### Fixed
- Prevented recursive renderables from getting stuck
## Changed
- force_terminal and force_jupyter can now be used to force the disabled state, or left as None to auto-detect.
- Panel now expands to fit title if supplied
## [6.0.0] - 2020-08-25
### Fixed
- Fixed use of `__rich__` cast
### Changed
- New algorithm to pretty print which fits more on a line if possible
- Deprecated `character` parameter in Rule and Console.rule, in favor of `characters`
- Optimized Syntax.from_path to avoid searching all lexers, which also speeds up tracebacks
### Added
- Added soft_wrap flag to Console.print
## [5.2.1] - 2020-08-19
### Fixed
- Fixed underscore with display hook https://github.com/textualize/rich/issues/235
## [5.2.0] - 2020-08-14
### Changed
- Added crop argument to Console.print
- Added "ignore" overflow method
- Added multiple characters per rule @hedythedev https://github.com/textualize/rich/pull/207
## [5.1.2] - 2020-08-10
### Fixed
- Further optimized pretty printing ~5X.
## [5.1.1] - 2020-08-09
### Fixed
- Optimized pretty printing ~3X faster
## [5.1.0] - 2020-08-08
### Added
- Added Text.cell_len
- Added helpful message regarding unicode decoding errors https://github.com/textualize/rich/issues/212
- Added display hook with pretty.install()
### Fixed
- Fixed deprecation warnings re backslash https://github.com/textualize/rich/issues/210
- Fixed repr highlighting of scientific notation, e.g. 1e100
### Changed
- Implemented pretty printing, and removed pprintpp from dependencies
- Optimized Text.join
## [5.0.0] - 2020-08-02
### Changed
- Change to console markup syntax to not parse Python structures as markup, i.e. `[1,2,3]` is treated as a literal, not a tag.
- Standard color numbers syntax has changed to `"color(<number>)"` so that `[5]` (for example) is considered a literal.
- Markup escape method has changed from double brackets to preceding with a backslash, so `foo[[]]` would be `foo\[bar]`
## [4.2.2] - 2020-07-30
### Changed
- Added thread to automatically call update() in progress.track(). Replacing previous adaptive algorithm.
- Second attempt at working around https://bugs.python.org/issue37871
## [4.2.1] - 2020-07-29
### Added
- Added show_time and show_level parameters to RichHandler https://github.com/textualize/rich/pull/182
### Fixed
- Fixed progress.track iterator exiting early https://github.com/textualize/rich/issues/189
- Added workaround for Python bug https://bugs.python.org/issue37871, fixing https://github.com/textualize/rich/issues/186
### Changed
- Set overflow=fold for log messages https://github.com/textualize/rich/issues/190
## [4.2.0] - 2020-07-27
### Fixed
- Fixed missing new lines https://github.com/textualize/rich/issues/178
- Fixed Progress.track https://github.com/textualize/rich/issues/184
- Remove control codes from exported text https://github.com/textualize/rich/issues/181
- Implemented auto-detection and color rendition of 16-color mode
## [4.1.0] - 2020-07-26
### Changed
- Optimized progress.track for very quick iterations
- Force default size of 80x25 if get_terminal_size reports size of 0,0
## [4.0.0] - 2020-07-23
Major version bump for a breaking change to `Text.stylize signature`, which corrects a minor but irritating API wart. The style now comes first and the `start` and `end` offsets default to the entire text. This allows for `text.stylize_all(style)` to be replaced with `text.stylize(style)`. The `start` and `end` offsets now support negative indexing, so `text.stylize("bold", -1)` makes the last character bold.
### Added
- Added markup switch to RichHandler https://github.com/textualize/rich/issues/171
### Changed
- Change signature of Text.stylize to accept style first
- Remove Text.stylize_all which is no longer necessary
### Fixed
- Fixed rendering of Confirm prompt https://github.com/textualize/rich/issues/170
## [3.4.1] - 2020-07-22
### Fixed
- Fixed incorrect default of expand in Table.grid
## [3.4.0] - 2020-07-22
### Added
- Added stream parameter to Console.input
- Added password parameter to Console.input
- Added description parameter to Progress.update
- Added rich.prompt
- Added detecting 'dumb' terminals
- Added Text.styled alternative constructor
### Fixes
- Fixed progress bars so that they are readable when color is disabled
## [3.3.2] - 2020-07-14
### Changed
- Optimized Text.pad
### Added
- Added rich.scope
- Change log_locals to use scope.render_scope
- Added title parameter to Columns
## [3.3.1] - 2020-07-13
### Added
- box.ASCII_DOUBLE_HEAD
### Changed
- Removed replace of -- --- ... from Markdown, as it made it impossible to include CLI info
## [3.3.0] - 2020-07-12
### Added
- Added title and title_align options to Panel
- Added pad and width parameters to Align
- Added end parameter to Rule
- Added Text.pad and Text.align methods
- Added leading parameter to Table
## [3.2.0] - 2020-07-10
### Added
- Added Align.left Align.center Align.right shortcuts
- Added Panel.fit shortcut
- Added align parameter to Columns
### Fixed
- Align class now pads to the right, like Text
- ipywidgets added as an optional dependency
- Issue with Panel and background color
- Fixed missing `__bool__` on Segment
### Changed
- Added `border_style` argument to Panel (note, `style` now applies to interior of the panel)
## [3.1.0] - 2020-07-09
### Changed
- Progress bars now work in Jupyter
## Added
- Added refresh_per_second to progress.track
- Added styles to BarColumn and progress.track
## [3.0.5] - 2020-07-07
### Fixed
- Fixed Windows version number require for truecolor
## [3.0.4] - 2020-07-07
### Changed
- More precise detection of Windows console https://github.com/textualize/rich/issues/140
## [3.0.3] - 2020-07-03
### Fixed
- Fixed edge case with wrapped and overflowed text
### Changed
- New algorithm for compressing table that priorities smaller columns
### Added
- Added safe_box parameter to Console constructor
## [3.0.2] - 2020-07-02
### Added
- Added rich.styled.Styled class to apply styles to renderable
- Table.add_row now has an optional style parameter
- Added table_movie.py to examples
### Changed
- Modified box options to use half line characters at edges
- Non no_wrap columns will now shrink below minimum width if table is compressed
## [3.0.1] - 2020-06-30
### Added
- Added box.ASCII2
- Added markup argument to logging extra
### Changed
- Setting a non-None width now implies expand=True
## [3.0.0] - 2020-06-28
### Changed
- Enabled supported box chars for legacy Windows, and introduce `safe_box` flag
- Disable hyperlinks on legacy Windows
- Constructors for Rule and Panel now have keyword only arguments (reason for major version bump)
- Table.add_colum added keyword only arguments
### Fixed
- Fixed Table measure
## [2.3.1] - 2020-06-26
### Fixed
- Disabled legacy_windows if jupyter is detected https://github.com/textualize/rich/issues/125
## [2.3.0] - 2020-06-26
### Fixed
- Fixed highlighting of paths / filenames
- Corrected docs for RichHandler which erroneously said default console writes to stderr
### Changed
- Allowed `style` parameter for `highlight_regex` to be a callable that returns a style
### Added
- Added optional highlighter parameter to RichHandler
## [2.2.6] - 2020-06-24
### Changed
- Store a "link id" on Style instance, so links containing different styles are highlighted together. (https://github.com/textualize/rich/pull/123)
## [2.2.5] - 2020-06-23
### Fixed
- Fixed justify of tables (https://github.com/textualize/rich/issues/117)
## [2.2.4] - 2020-06-21
### Added
- Added enable_link_path to RichHandler
- Added legacy_windows switch to Console constructor
## [2.2.3] - 2020-06-15
### Fixed
- Fixed console.log hyperlink not containing full path
### Changed
- Used random number for hyperlink id
## [2.2.2] - 2020-06-14
### Changed
- Exposed RichHandler highlighter as a class var
## [2.2.1] - 2020-06-14
### Changed
- Linked path in log render to file
## [2.2.0] - 2020-06-14
### Added
- Added redirect_stdout and redirect_stderr to Progress
### Changed
- printing to console with an active Progress doesn't break visuals
## [2.1.0] - 2020-06-11
### Added
- Added 'transient' option to Progress
### Changed
- Truncated overly long text in Rule with ellipsis overflow
## [2.0.1] - 2020-06-10
### Added
- Added expand option to Padding
### Changed
- Some minor optimizations in Text
### Fixed
- Fixed broken rule with CJK text
## [2.0.0] - 2020-06-06
### Added
- Added overflow methods
- Added no_wrap option to print()
- Added width option to print
- Improved handling of compressed tables
### Fixed
- Fixed erroneous space at end of log
- Fixed erroneous space at end of progress bar
### Changed
- Renamed \_ratio.ratio_divide to \_ratio.ratio_distribute
- Renamed JustifyValues to JustifyMethod (backwards incompatible)
- Optimized \_trim_spans
- Enforced keyword args in Console / Text interfaces (backwards incompatible)
- Return self from text.append
## [1.3.1] - 2020-06-01
### Changed
- Changed defaults of Table.grid
- Polished listdir.py example
### Added
- Added width argument to Columns
### Fixed
- Fixed for `columns_first` argument in Columns
- Fixed incorrect padding in columns with fixed width
## [1.3.0] - 2020-05-31
### Added
- Added rich.get_console() function to get global console instance.
- Added Columns class
### Changed
- Updated `markdown.Heading.create()` to work with subclassing.
- Console now transparently works with Jupyter
### Fixed
- Fixed issue with broken table with show_edge=False and a non-None box arg
## [1.2.3] - 2020-05-24
### Added
- Added `padding` parameter to Panel
- Added 'indeterminate' state when progress bars aren't started
### Fixed
- Fixed Progress deadlock https://github.com/textualize/rich/issues/90
### Changed
- Auto-detect "truecolor" color system when in Windows Terminal
## [1.2.2] - 2020-05-22
### Fixed
- Issue with right aligned wrapped text adding extra spaces
## [1.2.1] - 2020-05-22
### Fixed
- Issue with sum and Style
## [1.2.0] - 2020-05-22
### Added
- Support for double underline, framed, encircled, and overlined attributes
### Changed
- Optimized Style
- Changed methods `__console__` to `__rich_console__`, and `__measure__` to `__rich_measure__`
## [1.1.9] - 2020-05-20
### Fixed
- Exception when BarColumn.bar_width == None
## [1.1.8] - 2020-05-20
### Changed
- Optimizations for Segment, Console and Table
### Added
- Added Console.clear method
- Added exporting of links to HTML
## [1.1.7] - 2020-05-19
### Added
- Added collapse_padding option to Table.
### Changed
- Some style attributes may be abbreviated (b for bold, i for italic etc). Previously abbreviations worked in console markup but only one at a time, i.e. "[b]Hello[/]" but not "[b i]Hello[/]" -- now they work everywhere.
- Renamed 'text' property on Text to 'plain'. i.e. text.plain returns a string version of the Text instance.
### Fixed
- Fixed zero division if total is 0 in progress bar
## [1.1.6] - 2020-05-17
### Added
- Added rich.align.Align class
- Added justify argument to Console.print and console.log
## [1.1.5] - 2020-05-15
### Changed
- Changed progress bars to write to stdout on terminal and hide on non-terminal
## [1.1.4] - 2020-05-15
### Fixed
- Fixed incorrect file and link in progress.log
- Fixes for legacy windows: Bar, Panel, and Rule now use ASCII characters
- show_cursor is now a no-op on legacy windows
### Added
- Added Console.input
### Changed
- Disable progress bars when not writing to a terminal
## [1.1.3] - 2020-05-14
### Fixed
- Issue with progress of one line`
## [1.1.2] - 2020-05-14
### Added
- Added -p switch to python -m rich.markdown to page output
- Added Console.control to output control codes
### Changed
- Changed Console log_time_format to no longer require a space at the end
- Added print and log to Progress to render terminal output when progress is active
## [1.1.1] - 2020-05-12
### Changed
- Stripped cursor moving control codes from text
## [1.1.0] - 2020-05-10
### Added
- Added hyperlinks to Style and markup
- Added justify and code theme switches to markdown command
## [1.0.3] - 2020-05-08
### Added
- Added `python -m rich.syntax` command
## [1.0.2] - 2020-05-08
### Fixed
- Issue with Windows legacy support https://github.com/textualize/rich/issues/59
## [1.0.1] - 2020-05-08
### Changed
- Applied console markup after highlighting
- Documented highlighting
- Changed Markup parser to handle overlapping styles
- Relaxed dependency on colorama
- Allowed Theme to accept values as style definitions (str) as well as Style instances
- Added a panel to emphasize code in Markdown
### Added
- Added markup.escape
- Added `python -m rich.theme` command
- Added `python -m rich.markdown` command
- Added rendering of images in Readme (links only)
### Fixed
- Fixed Text.assemble not working with strings https://github.com/textualize/rich/issues/57
- Fixed table when column widths must be compressed to fit
## [1.0.0] - 2020-05-03
### Changed
- Improvements to repr highlighter to highlight URLs
## [0.8.13] - 2020-04-28
### Fixed
- Fixed incorrect markdown rendering for quotes and changed style
## [0.8.12] - 2020-04-21
### Fixed
- Removed debug print from rich.progress
## [0.8.11] - 2020-04-14
### Added
- Added Table.show_lines to render lines between rows
### Changed
- Added markup escape with double square brackets
## [0.8.10] - 2020-04-12
### Fixed
- Fix row_styles applying to header
## [0.8.9] - 2020-04-12
### Changed
- Added force_terminal option to `Console.__init__`
### Added
- Added Table.row_styles to enable zebra striping.
## [0.8.8] - 2020-03-31
### Fixed
- Fixed background in Syntax
## [0.8.7] - 2020-03-31
### Fixed
- Broken wrapping of long lines
- Fixed wrapping in Syntax
### Changed
- Added word_wrap option to Syntax, which defaults to False.
- Added word_wrap option to Traceback.
## [0.8.6] - 2020-03-29
### Added
- Experimental Jupyter notebook support: from rich.jupyter import print
## [0.8.5] - 2020-03-29
### Changed
- Smarter number parsing regex for repr highlighter
### Added
- uuid highlighter for repr
## [0.8.4] - 2020-03-28
### Added
- Added 'test card', run python -m rich
### Changed
- Detected windows terminal, defaulting to colorama support
### Fixed
- Fixed table scaling issue
## [0.8.3] - 2020-03-27
### Fixed
- CJK right align
## [0.8.2] - 2020-03-27
### Changed
- Fixed issue with 0 speed resulting in zero division error
- Changed signature of Progress.update
- Made calling start() a second time a no-op
## [0.8.1] - 2020-03-22
### Added
- Added progress.DownloadColumn
## [0.8.0] - 2020-03-17
### Added
- CJK support
- Console level highlight flag
- Added encoding argument to Syntax.from_path
### Changed
- Dropped support for Windows command prompt (try https://www.microsoft.com/en-gb/p/windows-terminal-preview/)
- Added task_id to Progress.track
## [0.7.2] - 2020-03-15
### Fixed
- KeyError for missing pygments style
## [0.7.1] - 2020-03-13
### Fixed
- Issue with control codes being used in length calculation
### Changed
- Remove current_style concept, which wasn't really used and was problematic for concurrency
## [0.7.0] - 2020-03-12
### Changed
- Added width option to Panel
- Change special method `__render_width__` to `__measure__`
- Dropped the "markdown style" syntax in console markup
- Optimized style rendering
### Added
- Added Console.show_cursor method
- Added Progress bars
### Fixed
- Fixed wrapping when a single word was too large to fit in a line
## [0.6.0] - 2020-03-03
### Added
- Added tab_size to Console and Text
- Added protocol.is_renderable for runtime check
- Added emoji switch to Console
- Added inherit boolean to Theme
- Made Console thread safe, with a thread local buffer
### Changed
- Console.markup attribute now effects Table
- SeparatedConsoleRenderable and RichCast types
### Fixed
- Fixed tabs breaking rendering by converting to spaces
## [0.5.0] - 2020-02-23
### Changed
- Replaced `__console_str__` with `__rich__`
## [0.4.1] - 2020-02-22
### Fixed
- Readme links in PyPI
## [0.4.0] - 2020-02-22
### Added
- Added Traceback rendering and handler
- Added rich.constrain
- Added rich.rule
### Fixed
- Fixed unnecessary padding
## [0.3.3] - 2020-02-04
### Fixed
- Fixed Windows color support
- Fixed line width on windows issue (https://github.com/textualize/rich/issues/7)
- Fixed Pretty print on Windows
## [0.3.2] - 2020-01-26
### Added
- Added rich.logging
## [0.3.1] - 2020-01-22
### Added
- Added colorama for Windows support
## [0.3.0] - 2020-01-19
### Added
- First official release, API still to be stabilized
[13.8.0]: https://github.com/textualize/rich/compare/v13.7.1...v13.8.0
[13.7.1]: https://github.com/textualize/rich/compare/v13.7.0...v13.7.1
[13.7.0]: https://github.com/textualize/rich/compare/v13.6.0...v13.7.0
[13.6.0]: https://github.com/textualize/rich/compare/v13.5.3...v13.6.0
[13.5.3]: https://github.com/textualize/rich/compare/v13.5.2...v13.5.3
[13.5.2]: https://github.com/textualize/rich/compare/v13.5.1...v13.5.2
[13.5.1]: https://github.com/textualize/rich/compare/v13.5.0...v13.5.1
[13.5.0]: https://github.com/textualize/rich/compare/v13.4.2...v13.5.0
[13.4.2]: https://github.com/textualize/rich/compare/v13.4.1...v13.4.2
[13.4.1]: https://github.com/textualize/rich/compare/v13.4.0...v13.4.1
[13.4.0]: https://github.com/textualize/rich/compare/v13.3.5...v13.4.0
[13.3.5]: https://github.com/textualize/rich/compare/v13.3.4...v13.3.5
[13.3.4]: https://github.com/textualize/rich/compare/v13.3.3...v13.3.4
[13.3.3]: https://github.com/textualize/rich/compare/v13.3.2...v13.3.3
[13.3.2]: https://github.com/textualize/rich/compare/v13.3.1...v13.3.2
[13.3.1]: https://github.com/textualize/rich/compare/v13.3.0...v13.3.1
[13.3.0]: https://github.com/textualize/rich/compare/v13.2.0...v13.3.0
[13.2.0]: https://github.com/textualize/rich/compare/v13.1.0...v13.2.0
[13.1.0]: https://github.com/textualize/rich/compare/v13.0.1...v13.1.0
[13.0.1]: https://github.com/textualize/rich/compare/v13.0.0...v13.0.1
[13.0.0]: https://github.com/textualize/rich/compare/v12.6.0...v13.0.0
[12.6.0]: https://github.com/textualize/rich/compare/v12.5.2...v12.6.0
[12.5.2]: https://github.com/textualize/rich/compare/v12.5.1...v12.5.2
[12.5.1]: https://github.com/textualize/rich/compare/v12.5.0...v12.5.1
[12.5.0]: https://github.com/textualize/rich/compare/v12.4.4...v12.5.0
[12.4.4]: https://github.com/textualize/rich/compare/v12.4.3...v12.4.4
[12.4.3]: https://github.com/textualize/rich/compare/v12.4.2...v12.4.3
[12.4.2]: https://github.com/textualize/rich/compare/v12.4.1...v12.4.2
[12.4.1]: https://github.com/textualize/rich/compare/v12.4.0...v12.4.1
[12.4.0]: https://github.com/textualize/rich/compare/v12.3.0...v12.4.0
[12.3.0]: https://github.com/textualize/rich/compare/v12.2.0...v12.3.0
[12.2.0]: https://github.com/textualize/rich/compare/v12.1.0...v12.2.0
[12.1.0]: https://github.com/textualize/rich/compare/v12.0.1...v12.1.0
[12.0.1]: https://github.com/textualize/rich/compare/v12.0.0...v12.0.1
[12.0.0]: https://github.com/textualize/rich/compare/v11.2.0...v12.0.0
[11.2.0]: https://github.com/textualize/rich/compare/v11.1.0...v11.2.0
[11.1.0]: https://github.com/textualize/rich/compare/v11.0.0...v11.1.0
[11.0.0]: https://github.com/textualize/rich/compare/v10.16.1...v11.0.0
[10.16.2]: https://github.com/textualize/rich/compare/v10.16.1...v10.16.2
[10.16.1]: https://github.com/textualize/rich/compare/v10.16.0...v10.16.1
[10.16.0]: https://github.com/textualize/rich/compare/v10.15.2...v10.16.0
[10.15.2]: https://github.com/textualize/rich/compare/v10.15.1...v10.15.2
[10.15.1]: https://github.com/textualize/rich/compare/v10.15.0...v10.15.1
[10.15.0]: https://github.com/textualize/rich/compare/v10.14.0...v10.15.0
[10.14.0]: https://github.com/textualize/rich/compare/v10.13.0...v10.14.0
[10.13.0]: https://github.com/textualize/rich/compare/v10.12.0...v10.13.0
[10.12.0]: https://github.com/textualize/rich/compare/v10.11.0...v10.12.0
[10.11.0]: https://github.com/textualize/rich/compare/v10.10.0...v10.11.0
[10.10.0]: https://github.com/textualize/rich/compare/v10.9.0...v10.10.0
[10.9.0]: https://github.com/textualize/rich/compare/v10.8.0...v10.9.0
[10.8.0]: https://github.com/textualize/rich/compare/v10.7.0...v10.8.0
[10.7.0]: https://github.com/textualize/rich/compare/v10.6.0...v10.7.0
[10.6.0]: https://github.com/textualize/rich/compare/v10.5.0...v10.6.0
[10.5.0]: https://github.com/textualize/rich/compare/v10.4.0...v10.5.0
[10.4.0]: https://github.com/textualize/rich/compare/v10.3.0...v10.4.0
[10.3.0]: https://github.com/textualize/rich/compare/v10.2.2...v10.3.0
[10.2.2]: https://github.com/textualize/rich/compare/v10.2.1...v10.2.2
[10.2.1]: https://github.com/textualize/rich/compare/v10.2.0...v10.2.1
[10.2.0]: https://github.com/textualize/rich/compare/v10.1.0...v10.2.0
[10.1.0]: https://github.com/textualize/rich/compare/v10.0.1...v10.1.0
[10.0.1]: https://github.com/textualize/rich/compare/v10.0.0...v10.0.1
[10.0.0]: https://github.com/textualize/rich/compare/v9.13.0...v10.0.0
[9.13.0]: https://github.com/textualize/rich/compare/v9.12.4...v9.13.0
[9.12.4]: https://github.com/textualize/rich/compare/v9.12.3...v9.12.4
[9.12.3]: https://github.com/textualize/rich/compare/v9.12.2...v9.12.3
[9.12.2]: https://github.com/textualize/rich/compare/v9.12.1...v9.12.2
[9.12.1]: https://github.com/textualize/rich/compare/v9.12.0...v9.12.1
[9.12.0]: https://github.com/textualize/rich/compare/v9.11.1...v9.12.0
[9.11.1]: https://github.com/textualize/rich/compare/v9.11.0...v9.11.1
[9.11.0]: https://github.com/textualize/rich/compare/v9.10.0...v9.11.0
[9.10.0]: https://github.com/textualize/rich/compare/v9.9.0...v9.10.0
[9.9.0]: https://github.com/textualize/rich/compare/v9.8.2...v9.9.0
[9.8.2]: https://github.com/textualize/rich/compare/v9.8.1...v9.8.2
[9.8.1]: https://github.com/textualize/rich/compare/v9.8.0...v9.8.1
[9.8.0]: https://github.com/textualize/rich/compare/v9.7.0...v9.8.0
[9.7.0]: https://github.com/textualize/rich/compare/v9.6.2...v9.7.0
[9.6.2]: https://github.com/textualize/rich/compare/v9.6.1...v9.6.2
[9.6.1]: https://github.com/textualize/rich/compare/v9.6.0...v9.6.1
[9.6.0]: https://github.com/textualize/rich/compare/v9.5.1...v9.6.0
[9.5.1]: https://github.com/textualize/rich/compare/v9.5.0...v9.5.1
[9.5.0]: https://github.com/textualize/rich/compare/v9.4.0...v9.5.0
[9.4.0]: https://github.com/textualize/rich/compare/v9.3.0...v9.4.0
[9.3.0]: https://github.com/textualize/rich/compare/v9.2.0...v9.3.0
[9.2.0]: https://github.com/textualize/rich/compare/v9.1.0...v9.2.0
[9.1.0]: https://github.com/textualize/rich/compare/v9.0.1...v9.1.0
[9.0.1]: https://github.com/textualize/rich/compare/v9.0.0...v9.0.1
[9.0.0]: https://github.com/textualize/rich/compare/v8.0.0...v9.0.0
[8.0.0]: https://github.com/textualize/rich/compare/v7.1.0...v8.0.0
[7.1.0]: https://github.com/textualize/rich/compare/v7.0.0...v7.1.0
[7.0.0]: https://github.com/textualize/rich/compare/v6.2.0...v7.0.0
[6.2.0]: https://github.com/textualize/rich/compare/v6.1.2...v6.2.0
[6.1.2]: https://github.com/textualize/rich/compare/v6.1.1...v6.1.2
[6.1.1]: https://github.com/textualize/rich/compare/v6.1.0...v6.1.1
[6.1.0]: https://github.com/textualize/rich/compare/v6.0.0...v6.1.0
[6.0.0]: https://github.com/textualize/rich/compare/v5.2.1...v6.0.0
[5.2.1]: https://github.com/textualize/rich/compare/v5.2.0...v5.2.1
[5.2.0]: https://github.com/textualize/rich/compare/v5.1.2...v5.2.0
[5.1.2]: https://github.com/textualize/rich/compare/v5.1.1...v5.1.2
[5.1.1]: https://github.com/textualize/rich/compare/v5.1.0...v5.1.1
[5.1.0]: https://github.com/textualize/rich/compare/v5.0.0...v5.1.0
[5.0.0]: https://github.com/textualize/rich/compare/v4.2.2...v5.0.0
[4.2.2]: https://github.com/textualize/rich/compare/v4.2.1...v4.2.2
[4.2.1]: https://github.com/textualize/rich/compare/v4.2.0...v4.2.1
[4.2.0]: https://github.com/textualize/rich/compare/v4.1.0...v4.2.0
[4.1.0]: https://github.com/textualize/rich/compare/v4.0.0...v4.1.0
[4.0.0]: https://github.com/textualize/rich/compare/v3.4.1...v4.0.0
[3.4.1]: https://github.com/textualize/rich/compare/v3.4.0...v3.4.1
[3.4.0]: https://github.com/textualize/rich/compare/v3.3.2...v3.4.0
[3.3.2]: https://github.com/textualize/rich/compare/v3.3.1...v3.3.2
[3.3.1]: https://github.com/textualize/rich/compare/v3.3.0...v3.3.1
[3.3.0]: https://github.com/textualize/rich/compare/v3.2.0...v3.3.0
[3.2.0]: https://github.com/textualize/rich/compare/v3.1.0...v3.2.0
[3.1.0]: https://github.com/textualize/rich/compare/v3.0.5...v3.1.0
[3.0.5]: https://github.com/textualize/rich/compare/v3.0.4...v3.0.5
[3.0.4]: https://github.com/textualize/rich/compare/v3.0.3...v3.0.4
[3.0.3]: https://github.com/textualize/rich/compare/v3.0.2...v3.0.3
[3.0.2]: https://github.com/textualize/rich/compare/v3.0.1...v3.0.2
[3.0.1]: https://github.com/textualize/rich/compare/v3.0.0...v3.0.1
[3.0.0]: https://github.com/textualize/rich/compare/v2.3.1...v3.0.0
[2.3.1]: https://github.com/textualize/rich/compare/v2.3.0...v2.3.1
[2.3.0]: https://github.com/textualize/rich/compare/v2.2.6...v2.3.0
[2.2.6]: https://github.com/textualize/rich/compare/v2.2.5...v2.2.6
[2.2.5]: https://github.com/textualize/rich/compare/v2.2.4...v2.2.5
[2.2.4]: https://github.com/textualize/rich/compare/v2.2.3...v2.2.4
[2.2.3]: https://github.com/textualize/rich/compare/v2.2.2...v2.2.3
[2.2.2]: https://github.com/textualize/rich/compare/v2.2.1...v2.2.2
[2.2.1]: https://github.com/textualize/rich/compare/v2.2.0...v2.2.1
[2.2.0]: https://github.com/textualize/rich/compare/v2.1.0...v2.2.0
[2.1.0]: https://github.com/textualize/rich/compare/v2.0.1...v2.1.0
[2.0.1]: https://github.com/textualize/rich/compare/v2.0.0...v2.0.1
[2.0.0]: https://github.com/textualize/rich/compare/v1.3.1...v2.0.0
[1.3.1]: https://github.com/textualize/rich/compare/v1.3.0...v1.3.1
[1.3.0]: https://github.com/textualize/rich/compare/v1.2.3...v1.3.0
[1.2.3]: https://github.com/textualize/rich/compare/v1.2.2...v1.2.3
[1.2.2]: https://github.com/textualize/rich/compare/v1.2.1...v1.2.2
[1.2.1]: https://github.com/textualize/rich/compare/v1.2.0...v1.2.1
[1.2.0]: https://github.com/textualize/rich/compare/v1.1.9...v1.2.0
[1.1.9]: https://github.com/textualize/rich/compare/v1.1.8...v1.1.9
[1.1.8]: https://github.com/textualize/rich/compare/v1.1.7...v1.1.8
[1.1.7]: https://github.com/textualize/rich/compare/v1.1.6...v1.1.7
[1.1.6]: https://github.com/textualize/rich/compare/v1.1.5...v1.1.6
[1.1.5]: https://github.com/textualize/rich/compare/v1.1.4...v1.1.5
[1.1.4]: https://github.com/textualize/rich/compare/v1.1.3...v1.1.4
[1.1.3]: https://github.com/textualize/rich/compare/v1.1.2...v1.1.3
[1.1.2]: https://github.com/textualize/rich/compare/v1.1.1...v1.1.2
[1.1.1]: https://github.com/textualize/rich/compare/v1.1.0...v1.1.1
[1.1.0]: https://github.com/textualize/rich/compare/v1.0.3...v1.1.0
[1.0.3]: https://github.com/textualize/rich/compare/v1.0.2...v1.0.3
[1.0.2]: https://github.com/textualize/rich/compare/v1.0.1...v1.0.2
[1.0.1]: https://github.com/textualize/rich/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/textualize/rich/compare/v0.8.13...v1.0.0
[0.8.13]: https://github.com/textualize/rich/compare/v0.8.12...v0.8.13
[0.8.12]: https://github.com/textualize/rich/compare/v0.8.11...v0.8.12
[0.8.11]: https://github.com/textualize/rich/compare/v0.8.10...v0.8.11
[0.8.10]: https://github.com/textualize/rich/compare/v0.8.9...v0.8.10
[0.8.9]: https://github.com/textualize/rich/compare/v0.8.8...v0.8.9
[0.8.8]: https://github.com/textualize/rich/compare/v0.8.7...v0.8.8
[0.8.7]: https://github.com/textualize/rich/compare/v0.8.6...v0.8.7
[0.8.6]: https://github.com/textualize/rich/compare/v0.8.5...v0.8.6
[0.8.5]: https://github.com/textualize/rich/compare/v0.8.4...v0.8.5
[0.8.4]: https://github.com/textualize/rich/compare/v0.8.3...v0.8.4
[0.8.3]: https://github.com/textualize/rich/compare/v0.8.2...v0.8.3
[0.8.2]: https://github.com/textualize/rich/compare/v0.8.1...v0.8.2
[0.8.1]: https://github.com/textualize/rich/compare/v0.8.0...v0.8.1
[0.8.0]: https://github.com/textualize/rich/compare/v0.7.2...v0.8.0
[0.7.2]: https://github.com/textualize/rich/compare/v0.7.1...v0.7.2
[0.7.1]: https://github.com/textualize/rich/compare/v0.7.0...v0.7.1
[0.7.0]: https://github.com/textualize/rich/compare/v0.6.0...v0.7.0
[0.6.0]: https://github.com/textualize/rich/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/textualize/rich/compare/v0.4.1...v0.5.0
[0.4.1]: https://github.com/textualize/rich/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/textualize/rich/compare/v0.3.3...v0.4.0
[0.3.3]: https://github.com/textualize/rich/compare/v0.3.2...v0.3.3
[0.3.2]: https://github.com/textualize/rich/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/textualize/rich/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/textualize/rich/compare/v0.2.0...v0.3.0
|