ratatui 0.25.0

A library that's all about cooking up terminal user interfaces
Documentation
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
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
# Changelog

All notable changes to this project will be documented in this file.

## [0.25.0]https://github.com/ratatui-org/ratatui/releases/tag/0.25.0 - 2023-12-18

We are thrilled to announce the new version of `ratatui` - a Rust library that's all about cooking up TUIs 🐭

In this version, we made improvements on widgets such as List, Table and Layout and changed some of the defaults for a better user experience.
Also, we renewed our website and updated our documentation/tutorials to get started with `ratatui`: <https://ratatui.rs> 🚀

✨ **Release highlights**: <https://ratatui.rs/highlights/v025/>

⚠️ List of breaking changes can be found [here](https://github.com/ratatui-org/ratatui/blob/main/BREAKING-CHANGES.md).

💖 We also enabled GitHub Sponsors for our organization, consider sponsoring us if you like `ratatui`: <https://github.com/sponsors/ratatui-org>

### Features

- [aef4956]https://github.com/ratatui-org/ratatui/commit/aef495604c52e563fbacfb1a6e730cd441a99129
  *(list)* `List::new` now accepts `IntoIterator<Item = Into<ListItem>>` ([#672]https://github.com/ratatui-org/ratatui/issues/672) [**breaking**]

  ````text
  This allows to build list like

  ```
  List::new(["Item 1", "Item 2"])
  ```
  ````

- [8bfd666]https://github.com/ratatui-org/ratatui/commit/8bfd6661e251b6943f74bda626e4708b2e9f4b51
  *(paragraph)* Add `line_count` and `line_width` unstable helper methods

  ````text
  This is an unstable feature that may be removed in the future
  ````

- [1229b96]https://github.com/ratatui-org/ratatui/commit/1229b96e428df880a951ef57f53ca73e74ef1ea2
  *(rect)* Add `offset` method ([#533]https://github.com/ratatui-org/ratatui/issues/533)

  ````text
  The offset method creates a new Rect that is moved by the amount
  specified in the x and y direction. These values can be positive or
  negative. This is useful for manual layout tasks.

  ```rust
  let rect = area.offset(Offset { x: 10, y -10 });
  ```
  ````

- [edacaf7]https://github.com/ratatui-org/ratatui/commit/edacaf7ff4e4b14702f6361af5a6da713b7dc564
  *(buffer)* Deprecate `Cell::symbol` field ([#624]https://github.com/ratatui-org/ratatui/issues/624)

  ````text
  The Cell::symbol field is now accessible via a getter method (`symbol()`). This will
  allow us to make future changes to the Cell internals such as replacing `String` with
  `compact_str`.
  ````

- [6b2efd0]https://github.com/ratatui-org/ratatui/commit/6b2efd0f6c3bf56dc06bbf042db40c0c66de577e
  *(layout)* Accept IntoIterator for constraints ([#663]https://github.com/ratatui-org/ratatui/issues/663)

  ````text
  Layout and Table now accept IntoIterator for constraints with an Item
  that is AsRef<Constraint>. This allows pretty much any collection of
  constraints to be passed to the layout functions including arrays,
  vectors, slices, and iterators (without having to call collect() on
  them).
  ````

- [753e246]https://github.com/ratatui-org/ratatui/commit/753e246531e1e9e2ea558911f8d03e738901d85f
  *(layout)* Allow configuring layout fill ([#633]https://github.com/ratatui-org/ratatui/issues/633)

  ````text
  The layout split will generally fill the remaining area when `split()`
  is called. This change allows the caller to configure how any extra
  space is allocated to the `Rect`s. This is useful for cases where the
  caller wants to have a fixed size for one of the `Rect`s, and have the
  other `Rect`s fill the remaining space.

  For now, the method and enum are marked as unstable because the exact
  name is still being bikeshedded. To enable this functionality, add the
  `unstable-segment-size` feature flag in your `Cargo.toml`.

  To configure the layout to fill the remaining space evenly, use
  `Layout::segment_size(SegmentSize::EvenDistribution)`. The default
  behavior is `SegmentSize::LastTakesRemainder`, which gives the last
  segment the remaining space. `SegmentSize::None` will disable this
  behavior. See the docs for `Layout::segment_size()` and
  `layout::SegmentSize` for more information.

  Fixes https://github.com/ratatui-org/ratatui/issues/536
  ````

- [1e2f0be]https://github.com/ratatui-org/ratatui/commit/1e2f0be75ac3fb3d6500c1de291bd49972b808e4
  *(layout)* Add parameters to Layout::new() ([#557]https://github.com/ratatui-org/ratatui/issues/557) [**breaking**]

  ````text
  Adds a convenience function to create a layout with a direction and a
  list of constraints which are the most common parameters that would be
  generally configured using the builder pattern. The constraints can be
  passed in as any iterator of constraints.

  ```rust
  let layout = Layout::new(Direction::Horizontal, [
      Constraint::Percentage(50),
      Constraint::Percentage(50),
  ]);
  ```
  ````

- [c862aa5]https://github.com/ratatui-org/ratatui/commit/c862aa5e9ef4dbf494b5151214ac87f5c71e76d4
  *(list)* Support line alignment ([#599]https://github.com/ratatui-org/ratatui/issues/599)

  ````text
  The `List` widget now respects the alignment of `Line`s and renders them as expected.
  ````

- [4424637]https://github.com/ratatui-org/ratatui/commit/4424637af252dc2f227fe4956eac71135e60fb02
  *(span)* Add setters for content and style ([#647]https://github.com/ratatui-org/ratatui/issues/647)

- [ebf1f42]https://github.com/ratatui-org/ratatui/commit/ebf1f4294211d478b8633a06576ec269a50db588
  *(style)* Implement `From` trait for crossterm to `Style` related structs ([#686]https://github.com/ratatui-org/ratatui/issues/686)

- [e49385b]https://github.com/ratatui-org/ratatui/commit/e49385b78c8e01fe6381b19d15137346bc6eb8a1
  *(table)* Add a Table::segment_size method ([#660]https://github.com/ratatui-org/ratatui/issues/660)

  ````text
  It controls how to distribute extra space to an underconstrained table.
  The default, legacy behavior is to leave the extra space unused.  The
  new options are LastTakesRemainder which gets all space to the rightmost
  column that can used it, and EvenDistribution which divides it amongst
  all columns.
  ````

- [b8f71c0]https://github.com/ratatui-org/ratatui/commit/b8f71c0d6eda3da272d29c7a9b3c47181049f76a
  *(widgets/chart)* Add option to set the position of legend ([#378]https://github.com/ratatui-org/ratatui/issues/378)

- [5bf4f52]https://github.com/ratatui-org/ratatui/commit/5bf4f52119ab3e0e3a266af196058179dc1d18c3
  *(uncategorized)* Implement `From` trait for termion to `Style` related structs ([#692]https://github.com/ratatui-org/ratatui/issues/692)

  ````text
  * feat(termion): implement from termion color

  * feat(termion): implement from termion style

  * feat(termion): implement from termion `Bg` and `Fg`
  ````

- [d19b266]https://github.com/ratatui-org/ratatui/commit/d19b266e0eabdb0fb00660439a1818239c94024b
  *(uncategorized)* Add Constraint helpers (e.g. from_lengths) ([#641]https://github.com/ratatui-org/ratatui/issues/641)

  ````text
  Adds helper methods that convert from iterators of u16 values to the
  specific Constraint type. This makes it easy to create constraints like:

  ```rust
  // a fixed layout
  let constraints = Constraint::from_lengths([10, 20, 10]);

  // a centered layout
  let constraints = Constraint::from_ratios([(1, 4), (1, 2), (1, 4)]);
  let constraints = Constraint::from_percentages([25, 50, 25]);

  // a centered layout with a minimum size
  let constraints = Constraint::from_mins([0, 100, 0]);

  // a sidebar / main layout with maximum sizes
  let constraints = Constraint::from_maxes([30, 200]);
  ```
  ````

### Bug Fixes

- [f69d57c]https://github.com/ratatui-org/ratatui/commit/f69d57c3b59e27b517a5ca1a002af808fee47970
  *(rect)* Fix underflow in the `Rect::intersection` method ([#678]https://github.com/ratatui-org/ratatui/issues/678)

- [56fc410]https://github.com/ratatui-org/ratatui/commit/56fc4101056e0f631f563f8f2c07646063e650d3
  *(block)* Make `inner` aware of title positions ([#657]https://github.com/ratatui-org/ratatui/issues/657)

  ````text
  Previously, when computing the inner rendering area of a block, all
  titles were assumed to be positioned at the top, which caused the
  height of the inner area to be miscalculated.
  ````

- [ec7b387]https://github.com/ratatui-org/ratatui/commit/ec7b3872b46c6828c88ce7f72308dc67731fca25
  *(doc)* Do not access deprecated `Cell::symbol` field in doc example ([#626]https://github.com/ratatui-org/ratatui/issues/626)

- [37c70db]https://github.com/ratatui-org/ratatui/commit/37c70dbb8e19c0fb35ced16b29751933514a441e
  *(table)* Add widths parameter to new() ([#664]https://github.com/ratatui-org/ratatui/issues/664) [**breaking**]

  ````text
  This prevents creating a table that doesn't actually render anything.
  ````

- [1f88da7]https://github.com/ratatui-org/ratatui/commit/1f88da75383f6de76e64e9258fbf38d02ec77af9
  *(table)* Fix new clippy lint which triggers on table widths tests ([#630]https://github.com/ratatui-org/ratatui/issues/630)

  ````text
  * fix(table): new clippy lint in 1.74.0 triggers on table widths tests
  ````

- [36d8c53]https://github.com/ratatui-org/ratatui/commit/36d8c5364590a559913c40ee5f021b5d8e3466e6
  *(table)* Widths() now accepts AsRef<[Constraint]> ([#628]https://github.com/ratatui-org/ratatui/issues/628)

  ````text
  This allows passing an array, slice or Vec of constraints, which is more
  ergonomic than requiring this to always be a slice.

  The following calls now all succeed:

  ```rust
  Table::new(rows).widths([Constraint::Length(5), Constraint::Length(5)]);
  Table::new(rows).widths(&[Constraint::Length(5), Constraint::Length(5)]);

  // widths could also be computed at runtime
  let widths = vec![Constraint::Length(5), Constraint::Length(5)];
  Table::new(rows).widths(widths.clone());
  Table::new(rows).widths(&widths);
  ```
  ````

- [34d099c]https://github.com/ratatui-org/ratatui/commit/34d099c99af27eacfdde71f9ced255c29e1e001a
  *(tabs)* Fixup tests broken by semantic merge conflict ([#665]https://github.com/ratatui-org/ratatui/issues/665)

  ````text
  Two changes without any line overlap caused the tabs tests to break
  ````

- [e4579f0]https://github.com/ratatui-org/ratatui/commit/e4579f0db2b70b59590cae02e994e3736b19a1b3
  *(tabs)* Set the default highlight_style ([#635]https://github.com/ratatui-org/ratatui/issues/635) [**breaking**]

  ````text
  Previously the default highlight_style was set to `Style::default()`,
  which meant that the highlight style was the same as the normal style.
  This change sets the default highlight_style to reversed text.
  ````

- [28ac55b]https://github.com/ratatui-org/ratatui/commit/28ac55bc62e4e14e3ace300633d56791a1d3dea0
  *(tabs)* Tab widget now supports custom padding ([#629]https://github.com/ratatui-org/ratatui/issues/629)

  ````text
  The Tab widget now contains padding_left and and padding_right
  properties. Those values can be set with functions `padding_left()`,
  `padding_right()`, and `padding()` which all accept `Into<Line>`.

  Fixes issue https://github.com/ratatui-org/ratatui/issues/502
  ````

- [df0eb1f]https://github.com/ratatui-org/ratatui/commit/df0eb1f8e94752db542ff58e1453f4f8beab17e2
  *(terminal)* Insert_before() now accepts lines > terminal height and doesn't add an extra blank line ([#596]https://github.com/ratatui-org/ratatui/issues/596)

  ````text
  Fixes issue with inserting content with height>viewport_area.height and adds
  the ability to insert content of height>terminal_height

  - Adds TestBackend::append_lines() and TestBackend::clear_region() methods to
    support testing the changes
  ````

- [aaeba27]https://github.com/ratatui-org/ratatui/commit/aaeba2709c09b7373f3781ecd4b0a96b22fc2764
  *(uncategorized)* Truncate table when overflow ([#685]https://github.com/ratatui-org/ratatui/issues/685)

  ````text
  This prevents a panic when rendering an empty right aligned and rightmost table cell
  ````

- [ffa78aa]https://github.com/ratatui-org/ratatui/commit/ffa78aa67ccd79b9aa1af0d7ccf56a2059d0f519
  *(uncategorized)* Add #[must_use] to Style-moving methods ([#600]https://github.com/ratatui-org/ratatui/issues/600)

- [a2f2bd5]https://github.com/ratatui-org/ratatui/commit/a2f2bd5df53a796c0f2a57bb1b22151e52b5ef03
  *(uncategorized)* MSRV is now `1.70.0` ([#593]https://github.com/ratatui-org/ratatui/issues/593)

### Refactor

- [f767ea7]https://github.com/ratatui-org/ratatui/commit/f767ea7d3766887cb79145103b5aa92e0eabf8f6
  *(list)* `start_corner` is now `direction` ([#673]https://github.com/ratatui-org/ratatui/issues/673)

  ````text
  The previous name `start_corner` did not communicate clearly the intent of the method.
  A new method `direction` and a new enum `ListDirection` were added.

  `start_corner` is now deprecated
  ````

- [b82451f]https://github.com/ratatui-org/ratatui/commit/b82451fb33f35ae0323a56bb6f962404b076a262
  *(examples)* Add vim binding ([#688]https://github.com/ratatui-org/ratatui/issues/688)

- [0576a8a]https://github.com/ratatui-org/ratatui/commit/0576a8aa3212c57d288c67592337a3870ae6dafc
  *(layout)* To natural reading order ([#681]https://github.com/ratatui-org/ratatui/issues/681)

  ````text
  Structs and enums at the top of the file helps show the interaction
  between the types without having to find each type in between longer
  impl sections.

  Also moved the try_split function into the Layout impl as an associated
  function and inlined the `layout::split()` which just called try_split.
  This makes the code a bit more contained.
  ````

- [4be18ab]https://github.com/ratatui-org/ratatui/commit/4be18aba8b535165f03d15450276b2e95a7970eb
  *(readme)* Reference awesome-ratatui instead of wiki ([#689]https://github.com/ratatui-org/ratatui/issues/689)

  ````text
  * refactor(readme): link awesome-ratatui instead of wiki

  The apps wiki moved to awesome-ratatui

  * docs(readme): Update README.md
  ````

- [7ef0afc]https://github.com/ratatui-org/ratatui/commit/7ef0afcb62198f76321e84d9bb19a8a590a3b649
  *(widgets)* Remove unnecessary dynamic dispatch and heap allocation ([#597]https://github.com/ratatui-org/ratatui/issues/597)

- [b282a06]https://github.com/ratatui-org/ratatui/commit/b282a0693289d9d2602b54b639d3701d8c8cc8a8
  *(uncategorized)* Remove items deprecated since 0.10 ([#691]https://github.com/ratatui-org/ratatui/issues/691) [**breaking**]

  ````text
  Remove `Axis::title_style` and `Buffer::set_background` which are deprecated since 0.10
  ````

- [7ced7c0]https://github.com/ratatui-org/ratatui/commit/7ced7c0aa3acdaa63ed6add59711614993210ba3
  *(uncategorized)* Define struct WrappedLine instead of anonymous tuple ([#608]https://github.com/ratatui-org/ratatui/issues/608)

  ````text
  It makes the type easier to document, and more obvious for users
  ````

### Documentation

- [fe632d7]https://github.com/ratatui-org/ratatui/commit/fe632d70cb150264d9af2f79145a1d14a3637f3e
  *(sparkline)* Add documentation ([#648]https://github.com/ratatui-org/ratatui/issues/648)

- [f4c8de0]https://github.com/ratatui-org/ratatui/commit/f4c8de041d48cec5ea9b3e1f540f57af5a09d7a4
  *(chart)* Document chart module ([#696]https://github.com/ratatui-org/ratatui/issues/696)

- [1b8b626]https://github.com/ratatui-org/ratatui/commit/1b8b6261e2de29a37b2cd7d6ee8659fb46d3beff
  *(examples)* Add animation and FPS counter to colors_rgb ([#583]https://github.com/ratatui-org/ratatui/issues/583)

- [2169a0d]https://github.com/ratatui-org/ratatui/commit/2169a0da01e3bd6272e33b9de26a033fcb5f55f2
  *(examples)* Add example of half block rendering ([#687]https://github.com/ratatui-org/ratatui/issues/687)

  ````text
  This is a fun example of how to render big text using half blocks
  ````

- [41c44a4]https://github.com/ratatui-org/ratatui/commit/41c44a4af66ba791959f3a298d1b544330b9a164
  *(frame)* Add docs about resize events ([#697]https://github.com/ratatui-org/ratatui/issues/697)

- [91c67eb]https://github.com/ratatui-org/ratatui/commit/91c67eb1009449e0dfdd29e6ef0132c5254cfbde
  *(github)* Update code owners ([#666]https://github.com/ratatui-org/ratatui/issues/666)

  ````text
  onboard @Valentin271 as maintainer
  ````

- [458fa90]https://github.com/ratatui-org/ratatui/commit/458fa9036281e0e6e88bd2ec90c633e499ce547c
  *(lib)* Tweak the crate documentation ([#659]https://github.com/ratatui-org/ratatui/issues/659)

- [3ec4e24]https://github.com/ratatui-org/ratatui/commit/3ec4e24d00e118a12c8fea888e16ce19b75cf45f
  *(list)* Add documentation to the List widget ([#669]https://github.com/ratatui-org/ratatui/issues/669)

  ````text
  Adds documentation to the List widget and all its sub components like `ListState` and `ListItem`
  ````

- [9f37100]https://github.com/ratatui-org/ratatui/commit/9f371000968044e09545d66068c4ed4ea4b35d8a
  *(readme)* Update README.md and fix the bug that demo2 cannot run ([#595]https://github.com/ratatui-org/ratatui/issues/595)

  ````text
  Fixes https://github.com/ratatui-org/ratatui/issues/594
  ````

- [2a87251]https://github.com/ratatui-org/ratatui/commit/2a87251152432fd99c18864f32874fed2cab2f99
  *(security)* Add security policy ([#676]https://github.com/ratatui-org/ratatui/issues/676)

  ````text
  * docs: Create SECURITY.md

  * Update SECURITY.md
  ````

- [987f7ee]https://github.com/ratatui-org/ratatui/commit/987f7eed4c8bd09e319b504e587eb1f3667ee64b
  *(website)* Rename book to website ([#661]https://github.com/ratatui-org/ratatui/issues/661)

- [a15c3b2]https://github.com/ratatui-org/ratatui/commit/a15c3b2660bf4102bc881a5bc11959bc136f4a17
  *(uncategorized)* Remove deprecated table constructor from breaking changes ([#698]https://github.com/ratatui-org/ratatui/issues/698)

- [113b4b7]https://github.com/ratatui-org/ratatui/commit/113b4b7a4ea841fe2ca7b1c153243fec781c3cc0
  *(uncategorized)* Rename template links to remove ratatui from name 📚 ([#690]https://github.com/ratatui-org/ratatui/issues/690)

- [211160c]https://github.com/ratatui-org/ratatui/commit/211160ca165e2ad23b3d4cd9382c6e4869644a9c
  *(uncategorized)* Remove simple-tui-rs ([#651]https://github.com/ratatui-org/ratatui/issues/651)

  ````text
  This has not been recently and doesn't lead to good code
  ````

### Styling

- [6a6e9dd]https://github.com/ratatui-org/ratatui/commit/6a6e9dde9dc66ecb6f47f858fd0a67d7dc9eb7d1
  *(tabs)* Fix doc formatting ([#662]https://github.com/ratatui-org/ratatui/issues/662)

### Miscellaneous Tasks

- [910ad00]https://github.com/ratatui-org/ratatui/commit/910ad00059c3603ba6b1751c95783f974fde88a1
  *(rustfmt)* Enable format_code_in_doc_comments ([#695]https://github.com/ratatui-org/ratatui/issues/695)

  ````text
  This enables more consistently formatted code in doc comments,
  especially since ratatui heavily uses fluent setters.

  See https://rust-lang.github.io/rustfmt/?version=v1.6.0#format_code_in_doc_comments
  ````

- [d118565]https://github.com/ratatui-org/ratatui/commit/d118565ef60480fba8f2906ede81f875a562cb61
  *(table)* Cleanup docs and builder methods ([#638]https://github.com/ratatui-org/ratatui/issues/638)

  ````text
  - Refactor the `table` module for better top to bottom readability by
  putting types first and arranging them in a logical order (Table, Row,
  Cell, other).

  - Adds new methods for:
    - `Table::rows`
    - `Row::cells`
    - `Cell::new`
    - `Cell::content`
    - `TableState::new`
    - `TableState::selected_mut`

  - Makes `HighlightSpacing::should_add` pub(crate) since it's an internal
    detail.

  - Adds tests for all the new methods and simple property tests for all
    the other setter methods.
  ````

- [dd22e72]https://github.com/ratatui-org/ratatui/commit/dd22e721e3aed24538eb08e46e40339cec636bcb
  *(uncategorized)* Correct "builder methods" in docs and add `must_use` on widgets setters ([#655]https://github.com/ratatui-org/ratatui/issues/655)

- [18e19f6]https://github.com/ratatui-org/ratatui/commit/18e19f6ce6ae3ce9bd52110ab6cbd4ed4bcca5e6
  *(uncategorized)* Fix breaking changes doc versions ([#639]https://github.com/ratatui-org/ratatui/issues/639)

  ````text
  Moves the layout::new change to unreleasedd section and adds the table change
  ````

- [a58cce2]https://github.com/ratatui-org/ratatui/commit/a58cce2dba404fe394bbb298645bf3c40518fe1f
  *(uncategorized)* Disable default benchmarking ([#598]https://github.com/ratatui-org/ratatui/issues/598)

  ````text
  Disables the default benchmarking behaviour for the lib target to fix unrecognized
  criterion benchmark arguments.

  See https://bheisler.github.io/criterion.rs/book/faq.html#cargo-bench-gives-unrecognized-option-errors-for-valid-command-line-options for details
  ````

### Continuous Integration

- [59b9c32]https://github.com/ratatui-org/ratatui/commit/59b9c32fbc2bc6725bdec42e63216024fab71493
  *(codecov)* Adjust threshold and noise settings ([#615]https://github.com/ratatui-org/ratatui/issues/615)

  ````text
  Fixes https://github.com/ratatui-org/ratatui/issues/612
  ````

- [03401cd]https://github.com/ratatui-org/ratatui/commit/03401cd46e6566af4d063bac11efc30f28b5358a
  *(uncategorized)* Fix untrusted input in pr check workflow ([#680]https://github.com/ratatui-org/ratatui/issues/680)

### Contributors

Thank you so much to everyone that contributed to this release!

Here is the list of contributors who have contributed to `ratatui` for the first time!

* @rikonaka
* @danny-burrows
* @SOF3
* @jan-ferdinand
* @rhaskia
* @asomers
* @progval
* @TylerBloom
* @YeungKC
* @lyuha

## [0.24.0]https://github.com/ratatui-org/ratatui/releases/tag/0.24.0 - 2023-10-23

We are excited to announce the new version of `ratatui` - a Rust library that's all about cooking up TUIs 🐭

In this version, we've introduced features like window size API, enhanced chart rendering, and more.
The list of \*breaking changes\* can be found [here](https://github.com/ratatui-org/ratatui/blob/main/BREAKING-CHANGES.md) ⚠️.
Also, we created various tutorials and walkthroughs in [Ratatui Book](https://github.com/ratatui-org/ratatui-book) which is available at <https://ratatui.rs> 🚀

✨ **Release highlights**: <https://ratatui.rs/highlights/v024>

### Features

- [c6c3f88]https://github.com/ratatui-org/ratatui/commit/c6c3f88a79515a085fb8a96fe150843dab6dd5bc
  _(backend)_ Implement common traits for `WindowSize` ([#586]https://github.com/ratatui-org/ratatui/issues/586)

- [d077903]https://github.com/ratatui-org/ratatui/commit/d0779034e741834aac36b5b7a87c54bd8c50b7f2
  _(backend)_ Backend provides window_size, add Size struct ([#276]https://github.com/ratatui-org/ratatui/issues/276)

  ```text
  For image (sixel, iTerm2, Kitty...) support that handles graphics in
  terms of `Rect` so that the image area can be included in layouts.

  For example: an image is loaded with a known pixel-size, and drawn, but
  the image protocol has no mechanism of knowing the actual cell/character
  area that been drawn on. It is then impossible to skip overdrawing the
  area.

  Returning the window size in pixel-width / pixel-height, together with
  columns / rows, it can be possible to account the pixel size of each cell
  / character, and then known the `Rect` of a given image, and also resize
  the image so that it fits exactly in a `Rect`.

  Crossterm and termwiz also both return both sizes from one syscall,
  while termion does two.

  Add a `Size` struct for the cases where a `Rect`'s `x`/`y` is unused
  (always zero).

  `Size` is not "clipped" for `area < u16::max_value()` like `Rect`. This
  is why there are `From` implementations between the two.
  ```

- [301366c]https://github.com/ratatui-org/ratatui/commit/301366c4fa33524b0634bbd3dcf1abd1a1ebe7c6
  _(barchart)_ Render charts smaller than 3 lines ([#532]https://github.com/ratatui-org/ratatui/issues/532)

  ```text
  The bar values are not shown if the value width is equal the bar width
  and the bar is height is less than one line

  Add an internal structure `LabelInfo` which stores the reserved height
  for the labels (0, 1 or 2) and also whether the labels will be shown.

  Fixes ratatui-org#513
  ```

- [32e4619]https://github.com/ratatui-org/ratatui/commit/32e461953c8c9231edeef65c410b295916f26f3e
  _(block)_ Allow custom symbols for borders ([#529]https://github.com/ratatui-org/ratatui/issues/529) [**breaking**]

  ````text
  Adds a new `Block::border_set` method that allows the user to specify
  the symbols used for the border.

  Added two new border types: `BorderType::QuadrantOutside` and
  `BorderType::QuadrantInside`. These are used to draw borders using the
  unicode quadrant characters (which look like half block "pixels").

  ```
  ▛▀▀▜
  ▌  ▐
  ▙▄▄▟

  ▗▄▄▖
  ▐  ▌
  ▝▀▀▘
  ```
  Fixes: https://github.com/ratatui-org/ratatui/issues/528

  BREAKING CHANGES:
  - BorderType::to_line_set is renamed to to_border_set
  - BorderType::line_symbols is renamed to border_symbols
  ````

- [4541336]https://github.com/ratatui-org/ratatui/commit/45413365146ede5472dc28e0ee1970d245e2fa02
  _(canvas)_ Implement half block marker ([#550]https://github.com/ratatui-org/ratatui/issues/550)

  ```text
  * feat(canvas): implement half block marker

  A useful technique for the terminal is to use half blocks to draw a grid
  of "pixels" on the screen. Because we can set two colors per cell, and
  because terminal cells are about twice as tall as they are wide, we can
  draw a grid of half blocks that looks like a grid of square pixels.

  This commit adds a new `HalfBlock` marker that can be used in the Canvas
  widget and the associated HalfBlockGrid.

  Also updated demo2 to use the new marker as it looks much nicer.

  Adds docs for many of the methods and structs on canvas.

  Changes the grid resolution method to return the pixel count
  rather than the index of the last pixel.
  This is an internal detail with no user impact.
  ```

- [be55a5f]https://github.com/ratatui-org/ratatui/commit/be55a5fbcdffc4fd6aeb7edffa32f6e6c942a41e
  _(examples)_ Add demo2 example ([#500]https://github.com/ratatui-org/ratatui/issues/500)

- [082cbcb]https://github.com/ratatui-org/ratatui/commit/082cbcbc501d4284dc7e142227f9e04ef17da61d
  _(frame)_ Remove generic Backend parameter ([#530]https://github.com/ratatui-org/ratatui/issues/530) [**breaking**]

  ````text
  This change simplifies UI code that uses the Frame type. E.g.:

  ```rust
  fn draw<B: Backend>(frame: &mut Frame<B>) {
      // ...
  }
  ```

  Frame was generic over Backend because it stored a reference to the
  terminal in the field. Instead it now directly stores the viewport area
  and current buffer. These are provided at creation time and are valid
  for the duration of the frame.

  BREAKING CHANGE: Frame is no longer generic over Backend. Code that
  accepted a Frame<Backend> will now need to accept a Frame.
  ````

- [d67fa2c]https://github.com/ratatui-org/ratatui/commit/d67fa2c00d6d6125eeefa0eeeb032664dae9a4de
  _(line)_ Add `Line::raw` constructor ([#511]https://github.com/ratatui-org/ratatui/issues/511)

  ```text
  * feat(line): add `Line::raw` constructor

  There is already `Span::raw` and `Text::raw` methods
  and this commit simply adds `Line::raw` method for symmetry.

  Multi-line content is converted to multiple spans with the new line removed
  ```

- [cbf86da]https://github.com/ratatui-org/ratatui/commit/cbf86da0e7e4a2d99ace8df68854de74157a665a
  _(rect)_ Add is_empty() to simplify some common checks ([#534]https://github.com/ratatui-org/ratatui/issues/534)

  ```text
  - add `Rect::is_empty()` that checks whether either height or width == 0
  - refactored `Rect` into layout/rect.rs from layout.rs. No public API change as
     the module is private and the type is re-exported under the `layout` module.
  ```

- [15641c8]https://github.com/ratatui-org/ratatui/commit/15641c8475b7596c97a0affce0d6082c4b9586c2
  _(uncategorized)_ Add `buffer_mut` method on `Frame` ✨ ([#548]https://github.com/ratatui-org/ratatui/issues/548)

### Bug Fixes

- [638d596]https://github.com/ratatui-org/ratatui/commit/638d596a3b7aec723a2354cf0e261b207ac412f8
  _(layout)_ Use LruCache for layout cache ([#487]https://github.com/ratatui-org/ratatui/issues/487)

  ```text
  The layout cache now uses a LruCache with default size set to 16 entries.
  Previously the cache was backed by a HashMap, and was able to grow
  without bounds as a new entry was added for every new combination of
  layout parameters.

  - Added a new method (`layout::init_cache(usize)`) that allows the cache
  size to be changed if necessary. This will only have an effect if it is called
  prior to any calls to `layout::split()` as the cache is wrapped in a `OnceLock`
  ```

- [8d507c4]https://github.com/ratatui-org/ratatui/commit/8d507c43fa866ab4c0eda9fd169f307fba2a1109
  _(backend)_ Add feature flag for underline-color ([#570]https://github.com/ratatui-org/ratatui/issues/570)

  ````text
  Windows 7 doesn't support the underline color attribute, so we need to
  make it optional. This commit adds a feature flag for the underline
  color attribute - it is enabled by default, but can be disabled by
  passing `--no-default-features` to cargo.

  We could specically check for Windows 7 and disable the feature flag
  automatically, but I think it's better for this check to be done by the
  crossterm crate, since it's the one that actually knows about the
  underlying terminal.

  To disable the feature flag in an application that supports Windows 7,
  add the following to your Cargo.toml:

  ```toml
  ratatui = { version = "0.24.0", default-features = false, features = ["crossterm"] }
  ```

  Fixes https://github.com/ratatui-org/ratatui/issues/555
  ````

- [c3155a2]https://github.com/ratatui-org/ratatui/commit/c3155a24895ec4dfb1a8e580fb9ee3d31e9af139
  _(barchart)_ Add horizontal labels([#518]https://github.com/ratatui-org/ratatui/issues/518)

  ```text
  Labels were missed in the initial implementation of the horizontal
  mode for the BarChart widget. This adds them.

  Fixes https://github.com/ratatui-org/ratatui/issues/499
  ```

- [c5ea656]https://github.com/ratatui-org/ratatui/commit/c5ea656385843c880b3bef45dccbe8ea57431d10
  _(barchart)_ Avoid divide by zero in rendering ([#525]https://github.com/ratatui-org/ratatui/issues/525)

- [c9b8e7c]https://github.com/ratatui-org/ratatui/commit/c9b8e7cf412de235082f1fcd1698468c4b1b6171
  _(barchart)_ Render value labels with unicode correctly ([#515]https://github.com/ratatui-org/ratatui/issues/515)

  ```text
  An earlier change introduced a bug where the width of value labels with
  unicode characters was incorrectly using the string length in bytes
  instead of the unicode character count. This reverts the earlier change.
  ```

- [c8ab2d5]https://github.com/ratatui-org/ratatui/commit/c8ab2d59087f5b475ecf6ffa31b89ce24b6b1d28
  _(chart)_ Use graph style for top line ([#462]https://github.com/ratatui-org/ratatui/issues/462)

  ```text
  A bug in the rendering caused the top line of the chart to be rendered
  using the style of the chart, instead of the dataset style. This is
  fixed by only setting the style for the width of the text, and not the
  entire row.
  ```

- [0c7d547]https://github.com/ratatui-org/ratatui/commit/0c7d547db196a7cf65a6bf8cde74bd908407a3ff
  _(docs)_ Don't fail rustdoc due to termion ([#503]https://github.com/ratatui-org/ratatui/issues/503)

  ```text
  Windows cannot compile termion, so it is not included in the docs.
  Rustdoc will fail if it cannot find a link, so the docs fail to build
  on windows.

  This replaces the link to TermionBackend with one that does not fail
  during checks.

  Fixes https://github.com/ratatui-org/ratatui/issues/498
  ```

- [0c52ff4]https://github.com/ratatui-org/ratatui/commit/0c52ff431a1eedb0e38b5c8fb6623d4da17fa97e
  _(gauge)_ Fix gauge widget colors ([#572]https://github.com/ratatui-org/ratatui/issues/572)

  ```text
  The background colors of the gauge had a workaround for the issue we had
  with VHS / TTYD rendering the background color of the gauge. This
  workaround is no longer necessary in the updated versions of VHS / TTYD.

  Fixes https://github.com/ratatui-org/ratatui/issues/501
  ```

- [11076d0]https://github.com/ratatui-org/ratatui/commit/11076d0af3a76229af579fb40684fdd37df172dd
  _(rect)_ Fix arithmetic overflow edge cases ([#543]https://github.com/ratatui-org/ratatui/issues/543)

  ```text
  Fixes https://github.com/ratatui-org/ratatui/issues/258
  ```

- [21303f2]https://github.com/ratatui-org/ratatui/commit/21303f21672de1405135bb785497c30150644078
  _(rect)_ Prevent overflow in inner() and area() ([#523]https://github.com/ratatui-org/ratatui/issues/523)

- [ebd3680]https://github.com/ratatui-org/ratatui/commit/ebd3680a471d96ae1d8f52cd9e4a8a80c142d060
  _(stylize)_ Add Stylize impl for String ([#466]https://github.com/ratatui-org/ratatui/issues/466) [**breaking**]

  ```text
  Although the `Stylize` trait is already implemented for `&str` which
  extends to `String`, it is not implemented for `String` itself. This
  commit adds an impl of Stylize that returns a Span<'static> for `String`
  so that code can call Stylize methods on temporary `String`s.

  E.g. the following now compiles instead of failing with a compile error
  about referencing a temporary value:

      let s = format!("hello {name}!", "world").red();

  BREAKING CHANGE: This may break some code that expects to call Stylize
  methods on `String` values and then use the String value later. This
  will now fail to compile because the String is consumed by set_style
  instead of a slice being created and consumed.

  This can be fixed by cloning the `String`. E.g.:

      let s = String::from("hello world");
      let line = Line::from(vec![s.red(), s.green()]); // fails to compile
      let line = Line::from(vec![s.clone().red(), s.green()]); // works

  Fixes https://discord.com/channels/1070692720437383208/1072907135664529508/1148229700821450833
  ```

### Refactor

- [2fd85af]https://github.com/ratatui-org/ratatui/commit/2fd85af33c5cb7c04286e4e4198a939b4857eadc
  _(barchart)_ Simplify internal implementation ([#544]https://github.com/ratatui-org/ratatui/issues/544)

  ```text
  Replace `remove_invisible_groups_and_bars` with `group_ticks`
  `group_ticks` calculates the visible bar length in ticks. (A cell contains 8 ticks).

  It is used for 2 purposes:
  1. to get the bar length in ticks for rendering
  2. since it delivers only the values of the visible bars, If we zip these values
     with the groups and bars, then we will filter out the invisible groups and bars
  ```

### Documentation

- [0c68ebe]https://github.com/ratatui-org/ratatui/commit/0c68ebed4f63a595811006e0af221b11a83780cf
  _(block)_ Add documentation to Block ([#469]https://github.com/ratatui-org/ratatui/issues/469)

- [0fe7385]https://github.com/ratatui-org/ratatui/commit/0fe738500cd461aeafa0a63b37ed6250777f3599
  _(gauge)_ Add docs for `Gauge` and `LineGauge` ([#514]https://github.com/ratatui-org/ratatui/issues/514)

- [27c5637]https://github.com/ratatui-org/ratatui/commit/27c56376756b854db6d2fd8939419bd8578f8a90
  _(readme)_ Fix links to CONTRIBUTING.md and BREAKING-CHANGES.md ([#577]https://github.com/ratatui-org/ratatui/issues/577)

- [1947c58]https://github.com/ratatui-org/ratatui/commit/1947c58c60127ee7d1a72bcd408ee23062b8c4ec
  _(backend)_ Improve backend module docs ([#489]https://github.com/ratatui-org/ratatui/issues/489)

- [e098731]https://github.com/ratatui-org/ratatui/commit/e098731d6c1a68a0319d544301ac91cf2d05ccb2
  _(barchart)_ Add documentation to `BarChart` ([#449]https://github.com/ratatui-org/ratatui/issues/449)

  ```text
  Add documentation to the `BarChart` widgets and its sub-modules.
  ```

- [17797d8]https://github.com/ratatui-org/ratatui/commit/17797d83dab07dc6b76e7a3838e3e17fc3c94711
  _(canvas)_ Add support note for Braille marker ([#472]https://github.com/ratatui-org/ratatui/issues/472)

- [3cf0b83]https://github.com/ratatui-org/ratatui/commit/3cf0b83bda5deee18b8a1233acec0a21fde1f5f4
  _(color)_ Document true color support ([#477]https://github.com/ratatui-org/ratatui/issues/477)

  ```text
  * refactor(style): move Color to separate color mod

  * docs(color): document true color support
  ```

- [e5caf17]https://github.com/ratatui-org/ratatui/commit/e5caf170c8c304b952cbff7499fd4da17ab154ea
  _(custom_widget)_ Make button sticky when clicking with mouse ([#561]https://github.com/ratatui-org/ratatui/issues/561)

- [ad2dc56]https://github.com/ratatui-org/ratatui/commit/ad2dc5646dae04fa5502e677182cdeb0c3630cce
  _(examples)_ Update examples readme ([#576]https://github.com/ratatui-org/ratatui/issues/576)

  ```text
  remove VHS bug info, tweak colors_rgb image, update some of the instructions. add demo2
  ```

- [b61f65b]https://github.com/ratatui-org/ratatui/commit/b61f65bc20918380f2854253d4301ea804fc7437
  _(examples)_ Update theme to Aardvark Blue ([#574]https://github.com/ratatui-org/ratatui/issues/574)

  ```text
  This is a nicer theme that makes the colors pop
  ```

- [61af0d9]https://github.com/ratatui-org/ratatui/commit/61af0d99069ec99b3075cd499ede13cc2143401f
  _(examples)_ Make custom widget example into a button ([#539]https://github.com/ratatui-org/ratatui/issues/539)

  ```text
  The widget also now supports mouse
  ```

- [6b8725f]https://github.com/ratatui-org/ratatui/commit/6b8725f09173f418e9f17933d8ef8c943af444de
  _(examples)_ Add colors_rgb example ([#476]https://github.com/ratatui-org/ratatui/issues/476)

- [5c785b2]https://github.com/ratatui-org/ratatui/commit/5c785b22709fb64a0982722e4f6d0021ccf621b2
  _(examples)_ Move example gifs to github ([#460]https://github.com/ratatui-org/ratatui/issues/460)

  ```text
  - A new orphan branch named "images" is created to store the example
    images
  ```

- [ca9bcd3]https://github.com/ratatui-org/ratatui/commit/ca9bcd3156f55cd2df4edf003aa1401abbed9b12
  _(examples)_ Add descriptions and update theme ([#460]https://github.com/ratatui-org/ratatui/issues/460)

  ```text
  - Use the OceanicMaterial consistently in examples
  ```

- [080a05b]https://github.com/ratatui-org/ratatui/commit/080a05bbd3357cde3f0a02721a0f7f1aa206206b
  _(paragraph)_ Add docs for alignment fn ([#467]https://github.com/ratatui-org/ratatui/issues/467)

- [1e20475]https://github.com/ratatui-org/ratatui/commit/1e204750617acccf952b1845a3c7ce86e2b90cf7
  _(stylize)_ Improve docs for style shorthands ([#491]https://github.com/ratatui-org/ratatui/issues/491)

  ```text
  The Stylize trait was introduced in 0.22 to make styling less verbose.
  This adds a bunch of documentation comments to the style module and
  types to make this easier to discover.
  ```

- [dd9a8df]https://github.com/ratatui-org/ratatui/commit/dd9a8df03ab09d2381ef5ddd0c2b6ef5517b44df
  _(table)_ Add documentation for `block` and `header` methods of the `Table` widget ([#505]https://github.com/ratatui-org/ratatui/issues/505)

- [232be80]https://github.com/ratatui-org/ratatui/commit/232be80325cb899359ea1389516c421e57bc9cce
  _(table)_ Add documentation for `Table::new()` ([#471]https://github.com/ratatui-org/ratatui/issues/471)

- [3bda372]https://github.com/ratatui-org/ratatui/commit/3bda37284781b62560cde2a7fa774211f651ec25
  _(tabs)_ Add documentation to `Tabs` ([#535]https://github.com/ratatui-org/ratatui/issues/535)

- [42f8169]https://github.com/ratatui-org/ratatui/commit/42f816999e2cd573c498c4885069a5523707663c
  _(terminal)_ Add docs for terminal module ([#486]https://github.com/ratatui-org/ratatui/issues/486)

  ```text
  - moves the impl Terminal block up to be closer to the type definition
  ```

- [28e7fd4]https://github.com/ratatui-org/ratatui/commit/28e7fd4bc58edf537b66b69095691ae06872acd8
  _(terminal)_ Fix doc comment ([#452]https://github.com/ratatui-org/ratatui/issues/452)

- [51fdcbe]https://github.com/ratatui-org/ratatui/commit/51fdcbe7e936b3af3ee6a8ae8fee43df31aab27c
  _(title)_ Add documentation to title ([#443]https://github.com/ratatui-org/ratatui/issues/443)

  ```text
  This adds documentation for Title and Position
  ```

- [d4976d4]https://github.com/ratatui-org/ratatui/commit/d4976d4b63d4a17adb31bbe853a82109e2caaf1b
  _(widgets)_ Update the list of available widgets ([#496]https://github.com/ratatui-org/ratatui/issues/496)

- [6c7bef8]https://github.com/ratatui-org/ratatui/commit/6c7bef8d111bbc3ecfe228b14002c5db9634841c
  _(uncategorized)_ Replace colons with dashes in README.md for consistency ([#566]https://github.com/ratatui-org/ratatui/issues/566)

- [88ae348]https://github.com/ratatui-org/ratatui/commit/88ae3485c2c540b4ee630ab13e613e84efa7440a
  _(uncategorized)_ Update `Frame` docstring to remove reference to generic backend ([#564]https://github.com/ratatui-org/ratatui/issues/564)

- [089f8ba]https://github.com/ratatui-org/ratatui/commit/089f8ba66a50847780c4416b9b8833778a95e558
  _(uncategorized)_ Add double quotes to instructions for features ([#560]https://github.com/ratatui-org/ratatui/issues/560)

- [346e7b4]https://github.com/ratatui-org/ratatui/commit/346e7b4f4d53063ee13b04758b1b994e4f14e51c
  _(uncategorized)_ Add summary to breaking changes ([#549]https://github.com/ratatui-org/ratatui/issues/549)

- [401a7a7]https://github.com/ratatui-org/ratatui/commit/401a7a7f7111989d7dda11524b211a488483e732
  _(uncategorized)_ Improve clarity in documentation for `Frame` and `Terminal` 📚 ([#545]https://github.com/ratatui-org/ratatui/issues/545)

- [e35e413]https://github.com/ratatui-org/ratatui/commit/e35e4135c9080389baa99e13814aace7784d9cb3
  _(uncategorized)_ Fix terminal comment ([#547]https://github.com/ratatui-org/ratatui/issues/547)

- [8ae4403]https://github.com/ratatui-org/ratatui/commit/8ae4403b63a82d353b224c898b15249f30215476
  _(uncategorized)_ Fix `Terminal` docstring ([#546]https://github.com/ratatui-org/ratatui/issues/546)

- [9cfb133]https://github.com/ratatui-org/ratatui/commit/9cfb133a981c070a27342d78f4b9451673d8b349
  _(uncategorized)_ Document alpha release process ([#542]https://github.com/ratatui-org/ratatui/issues/542)

  ```text
  Fixes https://github.com/ratatui-org/ratatui/issues/412
  ```

- [4548a9b]https://github.com/ratatui-org/ratatui/commit/4548a9b7e22b07c1bd6839280c44123b8679589d
  _(uncategorized)_ Add BREAKING-CHANGES.md ([#538]https://github.com/ratatui-org/ratatui/issues/538)

  ```text
  Document the breaking changes in each version. This document is
  manually curated by summarizing the breaking changes in the changelog.
  ```

- [c0991cc]https://github.com/ratatui-org/ratatui/commit/c0991cc576b3ade02494cb33fd7c290aba55bfb8
  _(uncategorized)_ Make library and README consistent ([#526]https://github.com/ratatui-org/ratatui/issues/526)

  ```text
  * docs: make library and README consistent

  Generate the bulk of the README from the library documentation, so that
  they are consistent using cargo-rdme.

  - Removed the Contributors section, as it is redundant with the github
    contributors list.
  - Removed the info about the other backends and replaced it with a
    pointer to the documentation.
  - add docsrs example, vhs tape and images that will end up in the README
  ```

- [1414fbc]https://github.com/ratatui-org/ratatui/commit/1414fbcc05b4dfd7706cc68fcaba7d883e22f869
  _(uncategorized)_ Import prelude::\* in doc examples ([#490]https://github.com/ratatui-org/ratatui/issues/490)

  ```text
  This commit adds `prelude::*` all doc examples and widget::* to those
  that need it. This is done to highlight the use of the prelude and
  simplify the examples.

  - Examples in Type and module level comments show all imports and use
    `prelude::*` and `widget::*` where possible.
  - Function level comments hide imports unless there are imports other
    than `prelude::*` and `widget::*`.
  ```

- [74c5244]https://github.com/ratatui-org/ratatui/commit/74c5244be12031e372797c3c7949914552293f5c
  _(uncategorized)_ Add logo and favicon to docs.rs page ([#473]https://github.com/ratatui-org/ratatui/issues/473)

- [927a5d8]https://github.com/ratatui-org/ratatui/commit/927a5d8251a7947446100f4bb4d7a8e3ec2ad962
  _(uncategorized)_ Fix documentation lint warnings ([#450]https://github.com/ratatui-org/ratatui/issues/450)

- [eda2fb7]https://github.com/ratatui-org/ratatui/commit/eda2fb7077dcf0b158d1a69d2725aeb9464162be
  _(uncategorized)_ Use ratatui 📚 ([#446]https://github.com/ratatui-org/ratatui/issues/446)

### Testing

- [ea70bff]https://github.com/ratatui-org/ratatui/commit/ea70bffe5d3ec68dcf9eff015437d2474c08f855
  _(barchart)_ Add benchmarks ([#455]https://github.com/ratatui-org/ratatui/issues/455)

- [94af2a2]https://github.com/ratatui-org/ratatui/commit/94af2a29e10248ed709bbc8a7bf2f569894abc62
  _(buffer)_ Allow with_lines to accept Vec<Into<Line>> ([#494]https://github.com/ratatui-org/ratatui/issues/494)

  ```text
  This allows writing unit tests without having to call set_style on the
  expected buffer.
  ```

### Miscellaneous Tasks

- [1278131]https://github.com/ratatui-org/ratatui/commit/127813120eb17a7652b90e4333bb576e510ff51b
  _(changelog)_ Make the scopes lowercase in the changelog ([#479]https://github.com/ratatui-org/ratatui/issues/479)

- [82b40be]https://github.com/ratatui-org/ratatui/commit/82b40be4ab8aa735070dff1681c3d711147792e1
  _(ci)_ Improve checking the PR title ([#464]https://github.com/ratatui-org/ratatui/issues/464)

  ```text
  - Use [`action-semantic-pull-request`](https://github.com/amannn/action-semantic-pull-request)
  - Allow only reading the PR contents
  - Enable merge group
  ```

- [a20bd6a]https://github.com/ratatui-org/ratatui/commit/a20bd6adb5431d19140acdf1f9201381a31b2b24
  _(deps)_ Update lru requirement from 0.11.1 to 0.12.0 ([#581]https://github.com/ratatui-org/ratatui/issues/581)

  ```text
  Updates the requirements on [lru](https://github.com/jeromefroe/lru-rs) to permit the latest version.
  - [Changelog](https://github.com/jeromefroe/lru-rs/blob/master/CHANGELOG.md)
  - [Commits](https://github.com/jeromefroe/lru-rs/compare/0.11.1...0.12.0)

  ---
  updated-dependencies:
  - dependency-name: lru
    dependency-type: direct:production
  ...
  ```

- [5213f78]https://github.com/ratatui-org/ratatui/commit/5213f78d25927d834ada29b8c1023fcba5c891c6
  _(deps)_ Bump actions/checkout from 3 to 4 ([#580]https://github.com/ratatui-org/ratatui/issues/580)

  ```text
  Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
  - [Release notes](https://github.com/actions/checkout/releases)
  - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
  - [Commits](https://github.com/actions/checkout/compare/v3...v4)

  ---
  updated-dependencies:
  - dependency-name: actions/checkout
    dependency-type: direct:production
    update-type: version-update:semver-major
  ...
  ```

- [6cbdb06]https://github.com/ratatui-org/ratatui/commit/6cbdb06fd86858849d2454d09393a8e43c10741f
  _(examples)_ Refactor some examples ([#578]https://github.com/ratatui-org/ratatui/issues/578)

  ```text
  * chore(examples): Simplify timeout calculation with `Duration::saturating_sub`
  ```

- [12f9291]https://github.com/ratatui-org/ratatui/commit/12f92911c74211a22c6c142762ccb459d399763b
  _(github)_ Create dependabot.yml ([#575]https://github.com/ratatui-org/ratatui/issues/575)

  ```text
  * chore: Create dependabot.yml

  * Update .github/dependabot.yml
  ```

- [3a57e76]https://github.com/ratatui-org/ratatui/commit/3a57e76ed18b93f0bcee264d818a469920ce70db
  _(github)_ Add contact links for issues ([#567]https://github.com/ratatui-org/ratatui/issues/567)

- [5498a88]https://github.com/ratatui-org/ratatui/commit/5498a889ae8bd4ccb51b04d3a848dd2f58935906
  _(spans)_ Remove deprecated `Spans` type ([#426]https://github.com/ratatui-org/ratatui/issues/426)

  ```text
  The `Spans` type (plural, not singular) was replaced with a more ergonomic `Line` type
  in Ratatui v0.21.0 and marked deprecated byt left for backwards compatibility. This is now
  removed.

  - `Line` replaces `Spans`
  - `Buffer::set_line` replaces `Buffer::set_spans`
  ```

- [fbf1a45]https://github.com/ratatui-org/ratatui/commit/fbf1a451c85871db598cf1df2ad9a50edbe07cd2
  _(uncategorized)_ Simplify constraints ([#556]https://github.com/ratatui-org/ratatui/issues/556)

  ```text
  Use bare arrays rather than array refs / Vecs for all constraint
  examples.
  ```

- [a7bf4b3]https://github.com/ratatui-org/ratatui/commit/a7bf4b3f36f3281017d112ac1a67af7e82308261
  _(uncategorized)_ Use modern modules syntax ([#492]https://github.com/ratatui-org/ratatui/issues/492)

  ```text
  Move xxx/mod.rs to xxx.rs
  ```

- [af36282]https://github.com/ratatui-org/ratatui/commit/af36282df5d8dd1b4e6b32bba0539dba3382c23c
  _(uncategorized)_ Only run check pr action on pull_request_target events ([#485]https://github.com/ratatui-org/ratatui/issues/485)

- [322e46f]https://github.com/ratatui-org/ratatui/commit/322e46f15d8326d18c951be4c57e3b47005285bc
  _(uncategorized)_ Prevent PR merge with do not merge labels ♻️ ([#484]https://github.com/ratatui-org/ratatui/issues/484)

- [983ea7f]https://github.com/ratatui-org/ratatui/commit/983ea7f7a5371dd608891a0e2a7444a16e9fdc54
  _(uncategorized)_ Fix check for if breaking change label should be added ♻️ ([#483]https://github.com/ratatui-org/ratatui/issues/483)

- [384e616]https://github.com/ratatui-org/ratatui/commit/384e616231c1579328e7a4ba1a7130f624753ad1
  _(uncategorized)_ Add a check for if breaking change label should be added ♻️ ([#481]https://github.com/ratatui-org/ratatui/issues/481)

- [5f6aa30]https://github.com/ratatui-org/ratatui/commit/5f6aa30be54ea5dfcef730d709707a814e64deee
  _(uncategorized)_ Check documentation lint ([#454]https://github.com/ratatui-org/ratatui/issues/454)

- [47ae602]https://github.com/ratatui-org/ratatui/commit/47ae602df43674928f10016e2edc97c550b01ba2
  _(uncategorized)_ Check that PR title matches conventional commit guidelines ♻️ ([#459]https://github.com/ratatui-org/ratatui/issues/459)

- [28c6157]https://github.com/ratatui-org/ratatui/commit/28c61571e8a90345a866285a6f8459b24b70578a
  _(uncategorized)_ Add documentation guidelines ([#447]https://github.com/ratatui-org/ratatui/issues/447)

### Continuous Integration

- [343c6cd]https://github.com/ratatui-org/ratatui/commit/343c6cdc47c4fe38e64633d982aa413be356fb90
  _(lint)_ Move formatting and doc checks first ([#465]https://github.com/ratatui-org/ratatui/issues/465)

  ```text
  Putting the formatting and doc checks first to ensure that more critical
  errors are caught first (e.g. a conventional commit error or typo should
  not prevent the formatting and doc checks from running).
  ```

- [c95a75c]https://github.com/ratatui-org/ratatui/commit/c95a75c5d5e0370c98a2a37bcbd65bde996b2306
  _(makefile)_ Remove termion dependency from doc lint ([#470]https://github.com/ratatui-org/ratatui/issues/470)

  ```text
  Only build termion on non-windows targets
  ```

- [b996102]https://github.com/ratatui-org/ratatui/commit/b996102837dad7c77710bcbbc524c6e9691bd96f
  _(makefile)_ Add format target ([#468]https://github.com/ratatui-org/ratatui/issues/468)

  ```text
  - add format target to Makefile.toml that actually fixes the formatting
  - rename fmt target to lint-format
  - rename style-check target to lint-style
  - rename typos target to lint-typos
  - rename check-docs target to lint-docs
  - add section to CONTRIBUTING.md about formatting
  ```

- [572df75]https://github.com/ratatui-org/ratatui/commit/572df758ba1056759aa6f79c9e975854d27331db
  _(uncategorized)_ Put commit id first in changelog ([#463]https://github.com/ratatui-org/ratatui/issues/463)

- [878b6fc]https://github.com/ratatui-org/ratatui/commit/878b6fc258110b41e85833c35150d7dfcedf31ca
  _(uncategorized)_ Ignore benches from code coverage ([#461]https://github.com/ratatui-org/ratatui/issues/461)

### Contributors

Thank you so much to everyone that contributed to this release!

Here is the list of contributors who have contributed to `ratatui` for the first time!

- @[aatukaj]https://github.com/aatukaj
- @[DreadedHippy]https://github.com/DreadedHippy
- @[marianomarciello]https://github.com/marianomarciello
- @[HeeillWang]https://github.com/HeeillWang
- @[tz629]https://github.com/tz629
- @[hueblu]https://github.com/hueblu

## [v0.23.0]https://github.com/ratatui-org/ratatui/releases/tag/v0.23.0 - 2023-08-28

We are thrilled to release the new version of `ratatui` 🐭, the official successor[\*](https://github.com/fdehau/tui-rs/commit/335f5a4563342f9a4ee19e2462059e1159dcbf25) of [`tui-rs`](https://github.com/fdehau/tui-rs).

In this version, we improved the existing widgets such as `Barchart` and `Scrollbar`. We also made improvmements in the testing/internal APIs to provide a smoother testing/development experience. Additionally, we have addressed various bugs and implemented enhancements.

Here is a blog post that highlights the new features and breaking changes along with a retrospective about the project: [https://blog.orhun.dev/ratatui-0-23-0](https://blog.orhun.dev/ratatui-0-23-0)

### Features

- *(barchart)* Add direction attribute. (horizontal bars support) ([#325]https://github.com/ratatui-org/ratatui/issues/325)
([0dca6a6]https://github.com/ratatui-org/ratatui/commit/0dca6a689a7af640c5de8f7c87c2f1e03f0adf25)

  ````text
  * feat(barchart): Add direction attribute

  Enable rendering the bars horizontally. In some cases this allow us to
  make more efficient use of the available space.
  ````

- *(cell)* Add voluntary skipping capability for sixel ([#215]https://github.com/ratatui-org/ratatui/issues/215)
([e4bcf78]https://github.com/ratatui-org/ratatui/commit/e4bcf78afabe6b06970c51b4284246e345002cf5)

  ````text
  > Sixel is a bitmap graphics format supported by terminals.
  > "Sixel mode" is entered by sending the sequence ESC+Pq.
  > The "String Terminator" sequence ESC+\ exits the mode.

  The graphics are then rendered with the top left positioned at the
  cursor position.

  It is actually possible to render sixels in ratatui with just
  `buf.get_mut(x, y).set_symbol("^[Pq ... ^[\")`. But any buffer covering
  the "image area" will overwrite the graphics. This is most likely the same
  buffer, even though it consists of empty characters `' '`, except for
  the top-left character that starts the sequence.

  Thus, either the buffer or cells must be specialized to avoid drawing
  over the graphics. This patch specializes the `Cell` with a
  `set_skip(bool)` method, based on James' patch:
  https://github.com/TurtleTheSeaHobo/tui-rs/tree/sixel-support
  I unsuccessfully tried specializing the `Buffer`, but as far as I can tell
  buffers get merged all the way "up" and thus skipping must be set on the
  Cells. Otherwise some kind of "skipping area" state would be required,
  which I think is too complicated.

  Having access to the buffer now it is possible to skip all cells but the
  first one which can then `set_symbol(sixel)`. It is up to the user to
  deal with the graphics size and buffer area size. It is possible to get
  the terminal's font size in pixels with a syscall.

  An image widget for ratatui that uses this `skip` flag is available at
  https://github.com/benjajaja/ratatu-image.
  ````

- *(list)* Add option to always allocate the "selection" column width ([#394]https://github.com/ratatui-org/ratatui/issues/394)
([4d70169]https://github.com/ratatui-org/ratatui/commit/4d70169bef86898d331f46013ff72ef6d1c275ed)

  ````text
  * feat(list): add option to always allocate the "selection" column width

  Before this option was available, selecting a item in a list when nothing was selected
  previously made the row layout change (the same applies to unselecting) by adding the width
  of the "highlight symbol" in the front of the list, this option allows to configure this
  behavior.

  * style: change "highlight_spacing" doc comment to use inline code-block for reference
  ````

- *(release)* Add automated nightly releases ([#359]https://github.com/ratatui-org/ratatui/issues/359)
([aad164a]https://github.com/ratatui-org/ratatui/commit/aad164a5311b0a6d6d3f752a87ed385d5f0c1962)

  ````text
  * feat(release): add automated nightly releases

  * refactor(release): rename the alpha workflow

  * refactor(release): simplify the release calculation
  ````

- *(scrollbar)* Add optional track symbol ([#360]https://github.com/ratatui-org/ratatui/issues/360)
([1727fa5]https://github.com/ratatui-org/ratatui/commit/1727fa5120fa4bfcddd57484e532b2d5da88bc73) [**breaking**]

  ````text
  The track symbol is now optional, simplifying composition with other
  widgets.
  ````

- *(table)* Add support for line alignment in the table widget ([#392]https://github.com/ratatui-org/ratatui/issues/392)
([7748720]https://github.com/ratatui-org/ratatui/commit/77487209634f26da32bc59d9280769d80cc7c25c)

  ````text
  * feat(table): enforce line alignment in table render

  * test(table): add table alignment render test
  ````

- *(widgets::table)* Add option to always allocate the "selection" constraint ([#375]https://github.com/ratatui-org/ratatui/issues/375)
([f63ac72]https://github.com/ratatui-org/ratatui/commit/f63ac72305f80062727d81996f9bdb523e666099)

  ````text
  * feat(table): add option to configure selection layout changes

  Before this option was available, selecting a row in the table when no row was selected
  previously made the tables layout change (the same applies to unselecting) by adding the width
  of the "highlight symbol" in the front of the first column, this option allows to configure this
  behavior.

  * refactor(table): refactor "get_columns_widths" to return (x, width)

  and "render" to make use of that

  * refactor(table): refactor "get_columns_widths" to take in a selection_width instead of a boolean

  also refactor "render" to make use of this change

  * fix(table): rename "highlight_set_selection_space" to "highlight_spacing"

  * style(table): apply doc-comment suggestions from code review
  ````

- *(uncategorized)* Expand serde attributes for `TestBuffer` ([#389]https://github.com/ratatui-org/ratatui/issues/389)
([57ea871]https://github.com/ratatui-org/ratatui/commit/57ea871753a5b23f302c6f0a83d98f6a1988abfb)

- *(uncategorized)* Add weak constraints to make rects closer to each other in size ✨ ([#395]https://github.com/ratatui-org/ratatui/issues/395)
([6153371]https://github.com/ratatui-org/ratatui/commit/61533712be57f3921217a905618b319975f90330)

  ````text
  Also make `Max` and `Min` constraints MEDIUM strength for higher priority over equal chunks
  ````

- *(uncategorized)* Simplify split function ✨ ([#411]https://github.com/ratatui-org/ratatui/issues/411)
([b090101]https://github.com/ratatui-org/ratatui/commit/b090101b231a467628c910f05a73715809cb8d73)

### Bug Fixes

- *(barchart)* Empty groups causes panic ([#333]https://github.com/ratatui-org/ratatui/issues/333)
([9c95673]https://github.com/ratatui-org/ratatui/commit/9c956733f740b18616974e2c7d786ca761666f79)

  ````text
  This unlikely to happen, since nobody wants to add an empty group.
  Even we fix the panic, things will not render correctly.
  So it is better to just not add them to the BarChart.
  ````

- *(block)* Fixed title_style not rendered ([#349]https://github.com/ratatui-org/ratatui/issues/349) ([#363]https://github.com/ratatui-org/ratatui/issues/363)
([49a82e0]https://github.com/ratatui-org/ratatui/commit/49a82e062f2c46dc3060cdfdb230b65d9dbfb2d9)

- *(cargo)* Adjust minimum paste version ([#348]https://github.com/ratatui-org/ratatui/issues/348)
([8db9fb4]https://github.com/ratatui-org/ratatui/commit/8db9fb4aebd01e5ddc4edd68482361928f7e9c97)

  ````text
  ratatui is using features that are currently only available in paste 1.0.2; specifying the minimum version to be 1.0 will consequently cause a compilation error if cargo is only able to use a version less than 1.0.2.
  ````

- *(example)* Fix typo ([#337]https://github.com/ratatui-org/ratatui/issues/337)
([daf5890]https://github.com/ratatui-org/ratatui/commit/daf589015290ac8b379389d29ef90a1af15e3f75)

  ````text
  the existential feels
  ````

- *(layout)* Don't leave gaps between chunks ([#408]https://github.com/ratatui-org/ratatui/issues/408)
([56455e0]https://github.com/ratatui-org/ratatui/commit/56455e0fee57616f87ea43872fb7d5d9bb14aff5)

  ````text
  Previously the layout used the floor of the calculated start and width
  as the value to use for the split Rects. This resulted in gaps between
  the split rects.

  This change modifies the layout to round to the nearest column instead
  of taking the floor of the start and width. This results in the start
  and end of each rect being rounded the same way and being strictly
  adjacent without gaps.

  Because there is a required constraint that ensures that the last end is
  equal to the area end, there is no longer the need to fixup the last
  item width when the fill (as e.g. width = x.99 now rounds to x+1 not x).

  The colors example has been updated to use Ratio(1, 8) instead of
  Percentage(13), as this now renders without gaps for all possible sizes,
  whereas previously it would have left odd gaps between columns.
  ````

- *(layout)* Ensure left <= right ([#410]https://github.com/ratatui-org/ratatui/issues/410)
([f4ed3b7]https://github.com/ratatui-org/ratatui/commit/f4ed3b758450ef9c257705f3a1ea937329a968b4)

  ````text
  The recent refactor missed the positive width constraint
  ````

- *(readme)* Fix typo in readme ([#344]https://github.com/ratatui-org/ratatui/issues/344)
([d05ab6f]https://github.com/ratatui-org/ratatui/commit/d05ab6fb700527f0e062f334c7a5319c07099b04)

- *(readme)* Fix incorrect template link ([#338]https://github.com/ratatui-org/ratatui/issues/338)
([b9290b3]https://github.com/ratatui-org/ratatui/commit/b9290b35d13df57726d65a16d3c8bb18ce43e8c2)

- *(readme)* Fix typo in readme ([#336]https://github.com/ratatui-org/ratatui/issues/336)
([7e37a96]https://github.com/ratatui-org/ratatui/commit/7e37a96678440bc62cce52de840fef82eed58dd8)

- *(release)* Fix the last tag retrieval for alpha releases ([#416]https://github.com/ratatui-org/ratatui/issues/416)
([b6b2da5]https://github.com/ratatui-org/ratatui/commit/b6b2da5eb761ac5894cc7a2ee67f422312b63cfc)

- *(release)* Set the correct permissions for creating alpha releases ([#400]https://github.com/ratatui-org/ratatui/issues/400)
([778c320]https://github.com/ratatui-org/ratatui/commit/778c32000815b9abb0246c73997b1800256aade2)

- *(scrollbar)* Move symbols to symbols module ([#330]https://github.com/ratatui-org/ratatui/issues/330)
([7539f77]https://github.com/ratatui-org/ratatui/commit/7539f775fef4d816495e1e06732f6500cf08c126) [**breaking**]

  ````text
  The symbols and sets are moved from `widgets::scrollbar` to
  `symbols::scrollbar`. This makes it consistent with the other symbol
  sets and allows us to make the scrollbar module private rather than
  re-exporting it.
  ````

- *(table)* Fix unit tests broken due to rounding ([#419]https://github.com/ratatui-org/ratatui/issues/419)
([dc55211]https://github.com/ratatui-org/ratatui/commit/dc552116cf5e83c7ffcc2f5299c00d2315490c1d)

  ````text
  The merge of the table unit tests after the rounding layout fix was not
  rebased correctly, this addresses the broken tests, makes them more
  concise while adding comments to help clarify that the rounding behavior
  is working as expected.
  ````

- *(uncategorized)* Correct minor typos in documentation ([#331]https://github.com/ratatui-org/ratatui/issues/331)
([13fb11a]https://github.com/ratatui-org/ratatui/commit/13fb11a62c826da412045d498a03673d130ec057)

### Refactor

- *(barchart)* Reduce some calculations ([#430]https://github.com/ratatui-org/ratatui/issues/430)
([fc727df]https://github.com/ratatui-org/ratatui/commit/fc727df7d2d8347434a7d3a4e19465b29d7a0ed8)

  ````text
  Calculating the label_offset is unnecessary, if we just render the
  group label after rendering the bars. We can just reuse bar_y.
  ````

- *(layout)* Simplify and doc split() ([#405]https://github.com/ratatui-org/ratatui/issues/405)
([de25de0]https://github.com/ratatui-org/ratatui/commit/de25de0a9506e53df1378929251594bccf63d932)

  ````text
  * test(layout): add tests for split()

  * refactor(layout): simplify and doc split()

  This is mainly a reduction in density of the code with a goal of
  improving mainatainability so that the algorithm is clear.
  ````

- *(layout)* Simplify split() function ([#396]https://github.com/ratatui-org/ratatui/issues/396)
([5195099]https://github.com/ratatui-org/ratatui/commit/519509945be866c3b2f6a4230ee317262266f894)

  ````text
  Removes some unnecessary code and makes the function more readable.
  Instead of creating a temporary result and mutating it, we just create
  the result directly from the list of changes.
  ````

### Documentation

- *(examples)* Fix the instructions for generating demo GIF ([#442]https://github.com/ratatui-org/ratatui/issues/442)
([7a70602]https://github.com/ratatui-org/ratatui/commit/7a70602ec6bfcfec51bafd3bdbd35ff68b64340c)

- *(examples)* Show layout constraints ([#393]https://github.com/ratatui-org/ratatui/issues/393)
([10dbd6f]https://github.com/ratatui-org/ratatui/commit/10dbd6f2075285473ef47c4c898ef2f643180cd1)

  ````text
  Shows the way that layout constraints interact visually

  ![example](https://vhs.charm.sh/vhs-1ZNoNLNlLtkJXpgg9nCV5e.gif)
  ````

- *(examples)* Add color and modifiers examples ([#345]https://github.com/ratatui-org/ratatui/issues/345)
([6ad4bd4]https://github.com/ratatui-org/ratatui/commit/6ad4bd4cf2e7ea7548e49e64f92114c30d61ebb2)

  ````text
  The intent of these examples is to show the available colors and
  modifiers.

  - added impl Display for Color

  ![colors](https://vhs.charm.sh/vhs-2ZCqYbTbXAaASncUeWkt1z.gif)
  ![modifiers](https://vhs.charm.sh/vhs-2ovGBz5l3tfRGdZ7FCw0am.gif)
  ````

- *(examples)* Regen block.gif in readme ([#365]https://github.com/ratatui-org/ratatui/issues/365)
([e82521e]https://github.com/ratatui-org/ratatui/commit/e82521ea798d1385f671e1849c48de42857bf87a)

- *(examples)* Update block example ([#351]https://github.com/ratatui-org/ratatui/issues/351)
([554805d]https://github.com/ratatui-org/ratatui/commit/554805d6cbbf140c6da474daa891e9e754a5d281)

  ````text
  ![Block example](https://vhs.charm.sh/vhs-5X6hpReuDBKjD6hLxmDQ6F.gif)
  ````

- *(examples)* Add examples readme with gifs ([#303]https://github.com/ratatui-org/ratatui/issues/303)
([add578a]https://github.com/ratatui-org/ratatui/commit/add578a7d6d342e3ebaa26e69452a2ab5b08b0c7)

  ````text
  This commit adds a readme to the examples directory with gifs of each
  example. This should make it easier to see what each example does
  without having to run it.

  I modified the examples to fit better in the gifs. Mostly this was just
  removing the margins, but for the block example I cleaned up the code a
  bit to make it more readable and changed it so the background bug is not
  triggered.

  For the table example, the combination of Min, Length, and Percent
  constraints was causing the table to panic when the terminal was too
  small. I changed the example to use the Max constraint instead of the
  Length constraint.

  The layout example now shows information about how the layout is
  constrained on each block (which is now a paragraph with a block).
  ````

- *(layout)* Add doc comments ([#403]https://github.com/ratatui-org/ratatui/issues/403)
([418ed20]https://github.com/ratatui-org/ratatui/commit/418ed20479e060c1bd2f430ae127eae19a013afc)

- *(layout::Constraint)* Add doc-comments for all variants ([#371]https://github.com/ratatui-org/ratatui/issues/371)
([c8ddc16]https://github.com/ratatui-org/ratatui/commit/c8ddc164c7941c31b1b5fa82345e452923ec56e7)

- *(lib)* Extract feature documentation from Cargo.toml ([#438]https://github.com/ratatui-org/ratatui/issues/438)
([8b36683]https://github.com/ratatui-org/ratatui/commit/8b36683571e078792b20d6f693b817522cf6e992)

  ````text
  * docs(lib): extract feature documentation from Cargo.toml

  * chore(deps): make `document-features` optional dependency

  * docs(lib): document the serde feature from features section
  ````

- *(paragraph)* Add more docs ([#428]https://github.com/ratatui-org/ratatui/issues/428)
([6d6ecee]https://github.com/ratatui-org/ratatui/commit/6d6eceeb88b4da593c63dad258d2724cd583f9e0)

- *(project)* Make the project description cooler ([#441]https://github.com/ratatui-org/ratatui/issues/441)
([47fe4ad]https://github.com/ratatui-org/ratatui/commit/47fe4ad69f527fcbf879e9fec2a4d3702badc76b)

  ````text
  * docs(project): make the project description cooler

  * docs(lib): simplify description
  ````

- *(readme)* Use the correct version for MSRV ([#369]https://github.com/ratatui-org/ratatui/issues/369)
([3a37d2f]https://github.com/ratatui-org/ratatui/commit/3a37d2f6ede02fdde9ddffbb996059d6b95f98e7)

- *(readme)* Fix widget docs links ([#346]https://github.com/ratatui-org/ratatui/issues/346)
([2920e04]https://github.com/ratatui-org/ratatui/commit/2920e045ba23aa2eb3a4049625cd256ff37076c9)

  ````text
  Add scrollbar, clear. Fix Block link. Sort
  ````

- *(span)* Update docs and tests for `Span` ([#427]https://github.com/ratatui-org/ratatui/issues/427)
([d0ee04a]https://github.com/ratatui-org/ratatui/commit/d0ee04a69f30506fae706b429f15fe63b056b79e)

- *(uncategorized)* Improve scrollbar doc comment ([#329]https://github.com/ratatui-org/ratatui/issues/329)
([c3f87f2]https://github.com/ratatui-org/ratatui/commit/c3f87f245a5a2fc180d4c8f64557bcff716d09a9)

### Performance

- *(bench)* Used `iter_batched` to clone widgets in setup function ([#383]https://github.com/ratatui-org/ratatui/issues/383)
([149d489]https://github.com/ratatui-org/ratatui/commit/149d48919d870e29a7f104664db11eb77fb951a8)

  ````text
  Replaced `Bencher::iter` by `Bencher::iter_batched` to clone the widget in the setup function instead of in the benchmark timing.
  ````

### Styling

- *(paragraph)* Add documentation for "scroll"'s "offset" ([#355]https://github.com/ratatui-org/ratatui/issues/355)
([ab5e616]https://github.com/ratatui-org/ratatui/commit/ab5e6166358b2e6f0e9601a1ec5480760b91ca8e)

  ````text
  * style(paragraph): add documentation for "scroll"'s "offset"

  * style(paragraph): add more text to the scroll doc-comment
  ````

### Testing

- *(block)* Test all block methods ([#431]https://github.com/ratatui-org/ratatui/issues/431)
([a890f2a]https://github.com/ratatui-org/ratatui/commit/a890f2ac004b0e45db40de222fe3560fe0fdf94b)

- *(block)* Add benchmarks ([#368]https://github.com/ratatui-org/ratatui/issues/368)
([e18393d]https://github.com/ratatui-org/ratatui/commit/e18393dbc6781a8b1266906e8ba7da019a0a5d82)

  ````text
  Added benchmarks to the block widget to uncover eventual performance issues
  ````

- *(canvas)* Add unit tests for line ([#437]https://github.com/ratatui-org/ratatui/issues/437)
([ad3413e]https://github.com/ratatui-org/ratatui/commit/ad3413eeec9aab1568f8519caaf5efb951b2800c)

  ````text
  Also add constructor to simplify creating lines
  ````

- *(canvas)* Add tests for rectangle ([#429]https://github.com/ratatui-org/ratatui/issues/429)
([ad4d6e7]https://github.com/ratatui-org/ratatui/commit/ad4d6e7dec0f7e4c4e2e5624ccec54eb71c3f5ca)

- *(clear)* Test Clear rendering ([#432]https://github.com/ratatui-org/ratatui/issues/432)
([e9bd736]https://github.com/ratatui-org/ratatui/commit/e9bd736b1a680204fa801a7208cddc477f208680)

- *(list)* Added benchmarks ([#377]https://github.com/ratatui-org/ratatui/issues/377)
([664fb4c]https://github.com/ratatui-org/ratatui/commit/664fb4cffd71c85da87545cb4258165c1a44afa6)

  ````text
  Added benchmarks for the list widget (render and render half scrolled)
  ````

- *(map)* Add unit tests ([#436]https://github.com/ratatui-org/ratatui/issues/436)
([f0716ed]https://github.com/ratatui-org/ratatui/commit/f0716edbcfd33d50e4e74eaf51fe5ad945dab6b3)

- *(sparkline)* Added benchmark ([#384]https://github.com/ratatui-org/ratatui/issues/384)
([3293c6b]https://github.com/ratatui-org/ratatui/commit/3293c6b80b0505f9ed031fc8d9678e3db627b7ad)

  ````text
  Added benchmark for the `sparkline` widget testing a basic render with different amount of data
  ````

- *(styled_grapheme)* Test StyledGrapheme methods ([#433]https://github.com/ratatui-org/ratatui/issues/433)
([292a11d]https://github.com/ratatui-org/ratatui/commit/292a11d81e2f8c7676cc897f3493b75903025766)

- *(table)* Add test for consistent table-column-width ([#404]https://github.com/ratatui-org/ratatui/issues/404)
([4cd843e]https://github.com/ratatui-org/ratatui/commit/4cd843eda97abbc8fa7af85a03c2fffafce3c676)

- *(tabs)* Add unit tests ([#439]https://github.com/ratatui-org/ratatui/issues/439)
([14eb6b6]https://github.com/ratatui-org/ratatui/commit/14eb6b69796550648f7d0d0427384b64c31e36d8)

- *(test_backend)* Add tests for TestBackend coverage ([#434]https://github.com/ratatui-org/ratatui/issues/434)
([b35f19e]https://github.com/ratatui-org/ratatui/commit/b35f19ec442d3eb4810f6181e03ba0d4c077b768)

  ````text
  These are mostly to catch any future bugs introduced in the test backend
  ````

- *(text)* Add unit tests ([#435]https://github.com/ratatui-org/ratatui/issues/435)
([fc9f637]https://github.com/ratatui-org/ratatui/commit/fc9f637fb08fdc2959a52ed3eb12643565c634d9)

### Miscellaneous Tasks

- *(changelog)* Ignore alpha tags ([#440]https://github.com/ratatui-org/ratatui/issues/440)
([6009844]https://github.com/ratatui-org/ratatui/commit/6009844e256cf926039fa969b9ad8896e2289213)

- *(changelog)* Show full commit message ([#423]https://github.com/ratatui-org/ratatui/issues/423)
([a937500]https://github.com/ratatui-org/ratatui/commit/a937500ae4ac0a60fc5db82f6ce105a1154215f6)

  ````text
  This allows someone reading the changelog to search for information
  about breaking changes or implementation of new functionality.

  - refactored the commit template part to a macro instead of repeating it
  - added a link to the commit and to the release
  - updated the current changelog for the alpha and unreleased changes
  - Automatically changed the existing * lists to - lists
  ````

- *(ci)* Update the name of the CI workflow ([#417]https://github.com/ratatui-org/ratatui/issues/417)
([89ef0e2]https://github.com/ratatui-org/ratatui/commit/89ef0e29f56078ed0629f2dce89656c1131ebda1)

- *(codecov)* Fix yaml syntax ([#407]https://github.com/ratatui-org/ratatui/issues/407)
([ea48af1]https://github.com/ratatui-org/ratatui/commit/ea48af1c9abac7012e3bf79e78c6179f889a6321)

  ````text
  a yaml file cannot contain tabs outside of strings
  ````

- *(docs)* Add doc comment bump to release documentation ([#382]https://github.com/ratatui-org/ratatui/issues/382)
([8b28672]https://github.com/ratatui-org/ratatui/commit/8b286721314142dc7078354015db909e6938068c)

- *(github)* Add kdheepak as a maintainer ([#343]https://github.com/ratatui-org/ratatui/issues/343)
([60a4131]https://github.com/ratatui-org/ratatui/commit/60a4131384e6c0b38b6a6e933e62646b5265ca60)

- *(github)* Rename `tui-rs-revival` references to `ratatui-org` ([#340]https://github.com/ratatui-org/ratatui/issues/340)
([964190a]https://github.com/ratatui-org/ratatui/commit/964190a859e6479f22c6ccae8305192f548fbcc3)

- *(make)* Add task descriptions to Makefile.toml ([#398]https://github.com/ratatui-org/ratatui/issues/398)
([268bbed]https://github.com/ratatui-org/ratatui/commit/268bbed17e0ebc18b39f3253c9beb92c21946c80)

- *(toolchain)* Bump msrv to 1.67 ([#361]https://github.com/ratatui-org/ratatui/issues/361)
([8cd3205]https://github.com/ratatui-org/ratatui/commit/8cd3205d70a1395d2c60fc26d76c300a2a463c9e) [**breaking**]

  ````text
  * chore(toolchain)!: bump msrv to 1.67
  ````

- *(traits)* Add Display and FromStr traits ([#425]https://github.com/ratatui-org/ratatui/issues/425)
([98155dc]https://github.com/ratatui-org/ratatui/commit/98155dce25bbc0e8fe271735024a1f6bf2279d67)

  ````text
  Use strum for most of these, with a couple of manual implementations,
  and related tests
  ````

- *(uncategorized)* Create rust-toolchain.toml ([#415]https://github.com/ratatui-org/ratatui/issues/415)
([d2429bc]https://github.com/ratatui-org/ratatui/commit/d2429bc3e44a34197511192dbd215dd32fdf2d9c)

- *(uncategorized)* Use vhs to create demo.gif ([#390]https://github.com/ratatui-org/ratatui/issues/390)
([8c55158]https://github.com/ratatui-org/ratatui/commit/8c551588224ca97ee07948b445aa2ac9d05f997d)

  ````text
  The bug that prevented braille rendering is fixed, so switch to VHS for
  rendering the demo gif

  ![Demo of Ratatui](https://vhs.charm.sh/vhs-tF0QbuPbtHgUeG0sTVgFr.gif)
  ````

- *(uncategorized)* Implement `Hash` common traits ([#381]https://github.com/ratatui-org/ratatui/issues/381)
([8c4a2e0]https://github.com/ratatui-org/ratatui/commit/8c4a2e0fbfd021f1e087bb7256d9c6457742ea39)

  ````text
  Reorder the derive fields to be more consistent:

      Debug, Default, Clone, Copy, Eq, PartialEq, Ord, PartialOrd, Hash

  Hash trait won't be impl in this PR due to rust std design.
  If we need hash trait for f64 related structs in the future,
  we should consider wrap f64 into a new type.
  ````

- *(uncategorized)* Implement `Eq & PartialEq` common traits ([#357]https://github.com/ratatui-org/ratatui/issues/357)
([181706c]https://github.com/ratatui-org/ratatui/commit/181706c564d86e02991f89ec674b1af1d7f393fe)

  ````text
  Reorder the derive fields to be more consistent:

      Debug, Default, Clone, Copy, Eq, PartialEq, Ord, PartialOrd, Hash
  ````

- *(uncategorized)* Implement `Clone & Copy` common traits ([#350]https://github.com/ratatui-org/ratatui/issues/350)
([440f62f]https://github.com/ratatui-org/ratatui/commit/440f62ff5435af9536c55d17707a9bc48dae92cc)

  ````text
  Implement `Clone & Copy` common traits for most structs in src.

  Only implement `Copy` for structs that are simple and trivial to copy.

  Reorder the derive fields to be more consistent:

      Debug, Default, Clone, Copy, Eq, PartialEq, Ord, PartialOrd, Hash
  ````

- *(uncategorized)* Implement `Debug & Default` common traits ([#339]https://github.com/ratatui-org/ratatui/issues/339)
([bf49446]https://github.com/ratatui-org/ratatui/commit/bf4944683d6afb6f42bec80a1bd308ecdac50cbc)

  ````text
  Implement `Debug & Default` common traits for most structs in src.

  Reorder the derive fields to be more consistent:

      Debug, Default, Clone, Copy, Eq, PartialEq, Ord, PartialOrd, Hash
  ````

### Build

- *(deps)* Upgrade crossterm to 0.27 ([#380]https://github.com/ratatui-org/ratatui/issues/380)
([37fa6ab]https://github.com/ratatui-org/ratatui/commit/37fa6abe9d5dc459dc9855ea10f06afa72717c98)

- *(examples)* Fix cargo make run-examples ([#327]https://github.com/ratatui-org/ratatui/issues/327)
([e2cb11c]https://github.com/ratatui-org/ratatui/commit/e2cb11cc30072d90b20e04270c1fa97c18ab6f3f)

  ````text
  Enables the all-widgets feature so that the calendar example runs correctly
  ````

- *(uncategorized)* Forbid unsafe code ([#332]https://github.com/ratatui-org/ratatui/issues/332)
([0fb1ed8]https://github.com/ratatui-org/ratatui/commit/0fb1ed85c6232966ab25c8b3cab0fc277e9b69a6)

  ````text
  This indicates good (high level) code and is used by tools like cargo-geiger.
  ````

### Continuous Integration

- *(coverage)* Exclude examples directory from coverage ([#373]https://github.com/ratatui-org/ratatui/issues/373)
([de9f52f]https://github.com/ratatui-org/ratatui/commit/de9f52ff2cc606e1bf6b6bd8b97907afd73860fe)

- *(uncategorized)* Don't fail fast ([#364]https://github.com/ratatui-org/ratatui/issues/364)
([9191ad6]https://github.com/ratatui-org/ratatui/commit/9191ad60fd4fc3ddf8650a8f5eed87216a0e5c6f)

  ````text
  Run all the tests rather than canceling when one test fails. This allows
  us to see all the failures, rather than just the first one if there are
  multiple. Specifically this is useful when we have an issue in one
  toolchain or backend.
  ````

- *(uncategorized)* Add coverage token ([#352]https://github.com/ratatui-org/ratatui/issues/352)
([6f659cf]https://github.com/ratatui-org/ratatui/commit/6f659cfb07aad5ad2524f32fe46c45b84c8e9e34)

### Contributors

Thank you so much to everyone that contributed to this release!

Here is the list of contributors who have contributed to `ratatui` for the first time!

- @[EdJoPaTo]https://github.com/EdJoPaTo
- @[mhovd]https://github.com/mhovd
- @[joshrotenberg]https://github.com/joshrotenberg
- @[t-nil]https://github.com/t-nil
- @[ndd7xv]https://github.com/ndd7xv
- @[TieWay59]https://github.com/TieWay59
- @[Valentin271]https://github.com/Valentin271
- @[hasezoey]https://github.com/hasezoey
- @[jkcdarunday]https://github.com/jkcdarunday
- @[stappersg]https://github.com/stappersg
- @[benjajaja]https://github.com/benjajaja

## v0.22.0 - 2023-07-17

### Features

- *(barchart)* Set custom text value in the bar ([#309]https://github.com/ratatui-org/ratatui/issues/309)
- *(barchart)* Enable barchart groups ([#288]https://github.com/ratatui-org/ratatui/issues/288)
- *(block)* Support for having more than one title ([#232]https://github.com/ratatui-org/ratatui/issues/232)
- *(examples)* User_input example cursor movement ([#302]https://github.com/ratatui-org/ratatui/issues/302)
- *(misc)* Make builder fn const ([#275]https://github.com/ratatui-org/ratatui/issues/275) ([#275]https://github.com/ratatui-org/ratatui/issues/275)
- *(prelude)* Add a prelude ([#304]https://github.com/ratatui-org/ratatui/issues/304)
- *(style)* Enable setting the underline color for crossterm ([#308]https://github.com/ratatui-org/ratatui/issues/308) ([#310]https://github.com/ratatui-org/ratatui/issues/310)
- *(style)* Allow Modifiers add/remove in const ([#287]https://github.com/ratatui-org/ratatui/issues/287)
- *(stylize)* Allow all widgets to be styled ([#289]https://github.com/ratatui-org/ratatui/issues/289)
- *(terminal)* Expose 'swap_buffers' method
- *(uncategorized)* Stylization shorthands ([#283]https://github.com/ratatui-org/ratatui/issues/283)
- *(uncategorized)* Add scrollbar widget ([#228]https://github.com/ratatui-org/ratatui/issues/228)

### Bug Fixes

- *(clippy)* Unused_mut lint for layout ([#285]https://github.com/ratatui-org/ratatui/issues/285)
- *(examples)* Correct progress label in gague example ([#263]https://github.com/ratatui-org/ratatui/issues/263)
- *(layout)* Cap Constraint::apply to 100% length ([#264]https://github.com/ratatui-org/ratatui/issues/264)
- *(lint)* Suspicious_double_ref_op is new in 1.71 ([#311]https://github.com/ratatui-org/ratatui/issues/311)
- *(prelude)* Remove widgets module from prelude ([#317]https://github.com/ratatui-org/ratatui/issues/317)
- *(title)* Remove default alignment and position ([#323]https://github.com/ratatui-org/ratatui/issues/323)
- *(typos)* Configure typos linter ([#233]https://github.com/ratatui-org/ratatui/issues/233)
- *(uncategorized)* Rust-tui-template became a revival project ([#320]https://github.com/ratatui-org/ratatui/issues/320)
- *(uncategorized)* Revert removal of WTFPL from deny.toml ([#266]https://github.com/ratatui-org/ratatui/issues/266)

### Refactor

- *(ci)* Simplify cargo-make installation ([#240]https://github.com/ratatui-org/ratatui/issues/240)
- *(text)* Simplify reflow implementation ([#290]https://github.com/ratatui-org/ratatui/issues/290)

### Documentation

- *(color)* Parse more color formats and add docs ([#306]https://github.com/ratatui-org/ratatui/issues/306)
- *(lib)* Add `tui-term` a pseudoterminal library ([#268]https://github.com/ratatui-org/ratatui/issues/268)
- *(lib)* Fixup tui refs in widgets/mod.rs ([#216]https://github.com/ratatui-org/ratatui/issues/216)
- *(lib)* Add backend docs ([#213]https://github.com/ratatui-org/ratatui/issues/213)
- *(readme)* Remove duplicated mention of tui-rs-tree-widgets ([#223]https://github.com/ratatui-org/ratatui/issues/223)
- *(uncategorized)* Improve CONTRIBUTING.md ([#277]https://github.com/ratatui-org/ratatui/issues/277)
- *(uncategorized)* Fix scrollbar ascii illustrations and calendar doc paths ([#272]https://github.com/ratatui-org/ratatui/issues/272)
- *(uncategorized)* README tweaks ([#225]https://github.com/ratatui-org/ratatui/issues/225)
- *(uncategorized)* Add CODEOWNERS file ([#212]https://github.com/ratatui-org/ratatui/issues/212)
- *(uncategorized)* Update README.md and add hello_world example ([#204]https://github.com/ratatui-org/ratatui/issues/204)

### Styling

- *(comments)* Set comment length to wrap at 100 chars ([#218]https://github.com/ratatui-org/ratatui/issues/218)
- *(config)* Apply formatting to config files ([#238]https://github.com/ratatui-org/ratatui/issues/238)
- *(manifest)* Apply formatting to Cargo.toml ([#237]https://github.com/ratatui-org/ratatui/issues/237)
- *(readme)* Update the style of badges in README.md ([#299]https://github.com/ratatui-org/ratatui/issues/299)
- *(widget)* Inline format arguments ([#279]https://github.com/ratatui-org/ratatui/issues/279)
- *(uncategorized)* Fix formatting ([#292]https://github.com/ratatui-org/ratatui/issues/292)
- *(uncategorized)* Reformat imports ([#219]https://github.com/ratatui-org/ratatui/issues/219)

### Testing

- *(barchart)* Add unit tests ([#301]https://github.com/ratatui-org/ratatui/issues/301)
- *(paragraph)* Simplify paragraph benchmarks ([#282]https://github.com/ratatui-org/ratatui/issues/282)
- *(uncategorized)* Add benchmarks for paragraph ([#262]https://github.com/ratatui-org/ratatui/issues/262)

### Miscellaneous Tasks

- *(ci)* Bump cargo-make version ([#239]https://github.com/ratatui-org/ratatui/issues/239)
- *(ci)* Enable merge queue for builds ([#235]https://github.com/ratatui-org/ratatui/issues/235)
- *(ci)* Integrate cargo-deny for linting dependencies ([#221]https://github.com/ratatui-org/ratatui/issues/221)
- *(commitizen)* Add commitizen config ([#222]https://github.com/ratatui-org/ratatui/issues/222)
- *(demo)* Update demo gif ([#234]https://github.com/ratatui-org/ratatui/issues/234)
- *(demo)* Update demo gif with a fixed unicode gauge ([#227]https://github.com/ratatui-org/ratatui/issues/227)
- *(features)* Enable building with all-features ([#286]https://github.com/ratatui-org/ratatui/issues/286)
- *(github)* Add EditorConfig config ([#300]https://github.com/ratatui-org/ratatui/issues/300)
- *(github)* Simplify the CODEOWNERS file ([#271]https://github.com/ratatui-org/ratatui/issues/271)
- *(github)* Add pull request template ([#269]https://github.com/ratatui-org/ratatui/issues/269)
- *(github)* Fix the syntax in CODEOWNERS file ([#236]https://github.com/ratatui-org/ratatui/issues/236)
- *(license)* Add Ratatui developers to license ([#297]https://github.com/ratatui-org/ratatui/issues/297)
- *(tests)* Add coverage job to bacon ([#312]https://github.com/ratatui-org/ratatui/issues/312)
- *(uncategorized)* Lint and doc cleanup ([#191]https://github.com/ratatui-org/ratatui/issues/191)

### Build

- *(deps)* Upgrade bitflags to 2.3 ([#205]https://github.com/ratatui-org/ratatui/issues/205) [**breaking**]
- *(uncategorized)* Add git pre-push hooks using cargo-husky ([#274]https://github.com/ratatui-org/ratatui/issues/274)

### Continuous Integration

- *(makefile)* Split CI jobs ([#278]https://github.com/ratatui-org/ratatui/issues/278)
- *(uncategorized)* Parallelize CI jobs ([#318]https://github.com/ratatui-org/ratatui/issues/318)
- *(uncategorized)* Add feat-wrapping on push and on pull request ci triggers ([#267]https://github.com/ratatui-org/ratatui/issues/267)
- *(uncategorized)* Add code coverage action ([#209]https://github.com/ratatui-org/ratatui/issues/209)

### Contributors

Thank you so much to everyone that contributed to this release!

Here is the list of contributors who have contributed to `ratatui` for the first time!

- [@Nydragon]https://github.com/Nydragon
- [@snpefk]https://github.com/snpefk
- [@Philipp-M]https://github.com/Philipp-M
- [@mrbcmorris]https://github.com/mrbcmorris
- [@endepointe]https://github.com/endepointe
- [@kdheepak]https://github.com/kdheepak
- [@samyosm]https://github.com/samyosm
- [@SLASHLogin]https://github.com/SLASHLogin
- [@karthago1]https://github.com/karthago1
- [@BoolPurist]https://github.com/BoolPurist
- [@Nogesma]https://github.com/Nogesma

## v0.21.0 - 2023-05-28

### Features

- *(backend)* Add termwiz backend and example ([#5]https://github.com/ratatui-org/ratatui/issues/5)
- *(block)* Support placing the title on bottom ([#36]https://github.com/ratatui-org/ratatui/issues/36)
- *(border)* Add border! macro for easy bitflag manipulation ([#11]https://github.com/ratatui-org/ratatui/issues/11)
- *(calendar)* Add calendar widget ([#138]https://github.com/ratatui-org/ratatui/issues/138)
- *(color)* Add `FromStr` implementation for `Color` ([#180]https://github.com/ratatui-org/ratatui/issues/180)
- *(list)* Add len() to List ([#24]https://github.com/ratatui-org/ratatui/pull/24)
- *(paragraph)* Allow Lines to be individually aligned ([#149]https://github.com/ratatui-org/ratatui/issues/149)
- *(sparkline)* Finish #1 Sparkline directions PR ([#134]https://github.com/ratatui-org/ratatui/issues/134)
- *(terminal)* Add inline viewport ([#114]https://github.com/ratatui-org/ratatui/issues/114) [**breaking**]
- *(test)* Expose test buffer ([#160]https://github.com/ratatui-org/ratatui/issues/160)
- *(text)* Add `Masked` to display secure data ([#168]https://github.com/ratatui-org/ratatui/issues/168) [**breaking**]
- *(widget)* Add circle widget ([#159]https://github.com/ratatui-org/ratatui/issues/159)
- *(widget)* Add style methods to Span, Spans, Text ([#148]https://github.com/ratatui-org/ratatui/issues/148)
- *(widget)* Support adding padding to Block ([#20]https://github.com/ratatui-org/ratatui/issues/20)
- *(widget)* Add offset() and offset_mut() for table and list state ([#12]https://github.com/ratatui-org/ratatui/issues/12)

### Bug Fixes

- *(canvas)* Use full block for Marker::Block ([#133]https://github.com/ratatui-org/ratatui/issues/133) [**breaking**]
- *(example)* Update input in examples to only use press events ([#129]https://github.com/ratatui-org/ratatui/issues/129)
- *(uncategorized)* Cleanup doc example ([#145]https://github.com/ratatui-org/ratatui/issues/145)
- *(reflow)* Remove debug macro call ([#198]https://github.com/ratatui-org/ratatui/issues/198)

### Refactor

- *(example)* Remove redundant `vec![]` in `user_input` example ([#26]https://github.com/ratatui-org/ratatui/issues/26)
- *(example)* Refactor paragraph example ([#152]https://github.com/ratatui-org/ratatui/issues/152)
- *(style)* Mark some Style fns const so they can be defined globally ([#115]https://github.com/ratatui-org/ratatui/issues/115)
- *(text)* Replace `Spans` with `Line` ([#178]https://github.com/ratatui-org/ratatui/issues/178)

### Documentation

- *(apps)* Fix rsadsb/adsb_deku radar link ([#140]https://github.com/ratatui-org/ratatui/issues/140)
- *(apps)* Add tenere ([#141]https://github.com/ratatui-org/ratatui/issues/141)
- *(apps)* Add twitch-tui ([#124]https://github.com/ratatui-org/ratatui/issues/124)
- *(apps)* Add oxycards ([#113]https://github.com/ratatui-org/ratatui/issues/113)
- *(apps)* Re-add trippy to APPS.md ([#117]https://github.com/ratatui-org/ratatui/issues/117)
- *(block)* Add example for block.inner ([#158]https://github.com/ratatui-org/ratatui/issues/158)
- *(changelog)* Update the empty profile link in contributors ([#112]https://github.com/ratatui-org/ratatui/issues/112)
- *(readme)* Fix small typo in readme ([#186]https://github.com/ratatui-org/ratatui/issues/186)
- *(readme)* Add termwiz demo to examples ([#183]https://github.com/ratatui-org/ratatui/issues/183)
- *(readme)* Add acknowledgement section ([#154]https://github.com/ratatui-org/ratatui/issues/154)
- *(readme)* Update project description ([#127]https://github.com/ratatui-org/ratatui/issues/127)
- *(uncategorized)* Scrape example code from examples/* ([#195]https://github.com/ratatui-org/ratatui/issues/195)

### Styling

- *(apps)* Update the style of application list ([#184]https://github.com/ratatui-org/ratatui/issues/184)
- *(readme)* Update project introduction in README.md ([#153]https://github.com/ratatui-org/ratatui/issues/153)
- *(uncategorized)* Clippy's variable inlining in format macros

### Testing

- *(buffer)* Add `assert_buffer_eq!` and Debug implementation ([#161]https://github.com/ratatui-org/ratatui/issues/161)
- *(list)* Add characterization tests for list ([#167]https://github.com/ratatui-org/ratatui/issues/167)
- *(widget)* Add unit tests for Paragraph ([#156]https://github.com/ratatui-org/ratatui/issues/156)

### Miscellaneous Tasks

- *(uncategorized)* Inline format args ([#190]https://github.com/ratatui-org/ratatui/issues/190)
- *(uncategorized)* Minor lints, making Clippy happier ([#189]https://github.com/ratatui-org/ratatui/issues/189)

### Build

- *(uncategorized)* Bump MSRV to 1.65.0 ([#171]https://github.com/ratatui-org/ratatui/issues/171)

### Continuous Integration

- *(uncategorized)* Add ci, build, and revert to allowed commit types

### Contributors

Thank you so much to everyone that contributed to this release!

Here is the list of contributors who have contributed to `ratatui` for the first time!

- [@kpcyrd]https://github.com/kpcyrd
- [@fujiapple852]https://github.com/fujiapple852
- [@BrookJeynes]https://github.com/BrookJeynes
- [@Ziqi-Yang]https://github.com/Ziqi-Yang
- [@Xithrius]https://github.com/Xithrius
- [@lesleyrs]https://github.com/lesleyrs
- [@pythops]https://github.com/pythops
- [@wcampbell0x2a]https://github.com/wcampbell0x2a
- [@sophacles]https://github.com/sophacles
- [@Eyesonjune18]https://github.com/Eyesonjune18
- [@a-kenji]https://github.com/a-kenji
- [@TimerErTim]https://github.com/TimerErTim
- [@Mehrbod2002]https://github.com/Mehrbod2002
- [@thomas-mauran]https://github.com/thomas-mauran
- [@nyurik]https://github.com/nyurik

## v0.20.1 - 2023-03-19

### Bug Fixes

- *(style)* Bold needs a bit ([#104]https://github.com/ratatui-org/ratatui/issues/104)

### Documentation

- *(apps)* Add "logss" to apps ([#105]https://github.com/ratatui-org/ratatui/issues/105)
- *(uncategorized)* Fixup remaining tui references ([#106]https://github.com/ratatui-org/ratatui/issues/106)

### Contributors

Thank you so much to everyone that contributed to this release!

- [@joshka]https://github.com/joshka
- [@todoesverso]https://github.com/todoesverso
- [@UncleScientist]https://github.com/UncleScientist

## v0.20.0 - 2023-03-19

This marks the first release of `ratatui`, a community-maintained fork of [tui](https://github.com/fdehau/tui-rs).

The purpose of this release is to include **bug fixes** and **small changes** into the repository thus **no new features** are added. We have transferred all the pull requests from the original repository and worked on the low hanging ones to incorporate them in this "maintenance" release.

Here is a list of changes:

### Features

- *(cd)* Add continuous deployment workflow ([#93]https://github.com/ratatui-org/ratatui/issues/93)
- *(ci)* Add MacOS to CI ([#60]https://github.com/ratatui-org/ratatui/issues/60)
- *(widget)* Add `offset()` to `TableState` ([#10]https://github.com/ratatui-org/ratatui/issues/10)
- *(widget)* Add `width()` to ListItem ([#17]https://github.com/ratatui-org/ratatui/issues/17)

### Bug Fixes

- *(ci)* Test MSRV compatibility on CI ([#85]https://github.com/ratatui-org/ratatui/issues/85)
- *(ci)* Bump Rust version to 1.63.0 ([#80]https://github.com/ratatui-org/ratatui/issues/80)
- *(ci)* Use env for the cargo-make version ([#76]https://github.com/ratatui-org/ratatui/issues/76)
- *(ci)* Fix deprecation warnings on CI ([#58]https://github.com/ratatui-org/ratatui/issues/58)
- *(doc)* Add 3rd party libraries accidentally removed at #21 ([#61]https://github.com/ratatui-org/ratatui/issues/61)
- *(widget)* List should not ignore empty string items ([#42]https://github.com/ratatui-org/ratatui/issues/42) [**breaking**]
- *(uncategorized)* Cassowary/layouts: add extra constraints for fixing Min(v)/Max(v) combination. ([#31]https://github.com/ratatui-org/ratatui/issues/31)
- *(uncategorized)* Fix user_input example double key press registered on windows
- *(uncategorized)* Ignore zero-width symbol on rendering `Paragraph`
- *(uncategorized)* Fix typos ([#45]https://github.com/ratatui-org/ratatui/issues/45)
- *(uncategorized)* Fix typos ([#47]https://github.com/ratatui-org/ratatui/issues/47)

### Refactor

- *(style)* Make bitflags smaller ([#13]https://github.com/ratatui-org/ratatui/issues/13)

### Documentation

- *(apps)* Move 'apps using ratatui' to dedicated file ([#98]https://github.com/ratatui-org/ratatui/issues/98) ([#99]https://github.com/ratatui-org/ratatui/issues/99)
- *(canvas)* Add documentation for x_bounds, y_bounds ([#35]https://github.com/ratatui-org/ratatui/issues/35)
- *(contributing)* Specify the use of unsafe for optimization ([#67]https://github.com/ratatui-org/ratatui/issues/67)
- *(github)* Remove pull request template ([#68]https://github.com/ratatui-org/ratatui/issues/68)
- *(readme)* Update crate status badge ([#102]https://github.com/ratatui-org/ratatui/issues/102)
- *(readme)* Small edits before first release ([#101]https://github.com/ratatui-org/ratatui/issues/101)
- *(readme)* Add install instruction and update title ([#100]https://github.com/ratatui-org/ratatui/issues/100)
- *(readme)* Add systeroid to application list ([#92]https://github.com/ratatui-org/ratatui/issues/92)
- *(readme)* Add glicol-cli to showcase list ([#95]https://github.com/ratatui-org/ratatui/issues/95)
- *(readme)* Add oxker to application list ([#74]https://github.com/ratatui-org/ratatui/issues/74)
- *(readme)* Add app kubectl-watch which uses tui ([#73]https://github.com/ratatui-org/ratatui/issues/73)
- *(readme)* Add poketex to 'apps using tui' in README ([#64]https://github.com/ratatui-org/ratatui/issues/64)
- *(readme)* Update README.md ([#39]https://github.com/ratatui-org/ratatui/issues/39)
- *(readme)* Update README.md ([#40]https://github.com/ratatui-org/ratatui/issues/40)
- *(readme)* Clarify README.md fork status update
- *(uncategorized)* Fix: fix typos ([#90]https://github.com/ratatui-org/ratatui/issues/90)
- *(uncategorized)* Update to build more backends ([#81]https://github.com/ratatui-org/ratatui/issues/81)
- *(uncategorized)* Expand "Apps" and "Third-party" sections ([#21]https://github.com/ratatui-org/ratatui/issues/21)
- *(uncategorized)* Add tui-input and update xplr in README.md
- *(uncategorized)* Add hncli to list of applications made with tui-rs ([#41]https://github.com/ratatui-org/ratatui/issues/41)
- *(uncategorized)* Updated readme and contributing guide with updates about the fork ([#46]https://github.com/ratatui-org/ratatui/issues/46)

### Performance

- *(layout)* Better safe shared layout cache ([#62]https://github.com/ratatui-org/ratatui/issues/62)

### Miscellaneous Tasks

- *(cargo)* Update project metadata ([#94]https://github.com/ratatui-org/ratatui/issues/94)
- *(ci)* Integrate `typos` for checking typos ([#91]https://github.com/ratatui-org/ratatui/issues/91)
- *(ci)* Change the target branch to main ([#79]https://github.com/ratatui-org/ratatui/issues/79)
- *(ci)* Re-enable clippy on CI ([#59]https://github.com/ratatui-org/ratatui/issues/59)
- *(uncategorized)* Integrate `committed` for checking conventional commits ([#77]https://github.com/ratatui-org/ratatui/issues/77)
- *(uncategorized)* Update `rust-version` to 1.59 in Cargo.toml ([#57]https://github.com/ratatui-org/ratatui/issues/57)
- *(uncategorized)* Update deps ([#51]https://github.com/ratatui-org/ratatui/issues/51)
- *(uncategorized)* Fix typo in layout.rs ([#619]https://github.com/ratatui-org/ratatui/issues/619)
- *(uncategorized)* Add apps using `tui`

### Contributors

Thank you so much to everyone that contributed to this release!

- [@orhun]https://github.com/orhun
- [@mindoodoo]https://github.com/mindoodoo
- [@sayanarijit]https://github.com/sayanarijit
- [@Owletti]https://github.com/Owletti
- [@UncleScientist]https://github.com/UncleScientist
- [@rhysd]https://github.com/rhysd
- [@ckaznable]https://github.com/ckaznable
- [@imuxin]https://github.com/imuxin
- [@mrjackwills]https://github.com/mrjackwills
- [@conradludgate]https://github.com/conradludgate
- [@kianmeng]https://github.com/kianmeng
- [@chaosprint]https://github.com/chaosprint

And most importantly, special thanks to [Florian Dehau](https://github.com/fdehau) for creating this awesome library 💖 We look forward to building on the strong foundations that the original crate laid out.

## v0.19.0 - 2022-08-14

### Features

- Bump `crossterm` to `0.25`

## v0.18.0 - 2022-04-24

### Features

- Update `crossterm` to `0.23`

## v0.17.0 - 2022-01-22

### Features

- Add option to `widgets::List` to repeat the highlight symbol for each line of multi-line items (#533).
- Add option to control the alignment of `Axis` labels in the `Chart` widget (#568).

### Breaking changes

- The minimum supported rust version is now `1.56.1`.

#### New default backend and consolidated backend options (#553)

- `crossterm` is now the default backend.
If you are already using the `crossterm` backend, you can simplify your dependency specification in `Cargo.toml`:

```diff
- tui = { version = "0.16", default-features = false, features = ["crossterm"] }
+ tui = "0.17"
```

If you are using the `termion` backend, your `Cargo` is now a bit more verbose:

```diff
- tui = "0.16"
+ tui = { version = "0.17", default-features = false, features = ["termion"] }
```

`crossterm` has also been bumped to version `0.22`.

Because of their apparent low usage, `curses` and `rustbox` backends have been removed.
If you are using one of them, you can import their last implementation in your own project:

- [curses]https://github.com/fdehau/tui-rs/blob/v0.16.0/src/backend/curses.rs
- [rustbox]https://github.com/fdehau/tui-rs/blob/v0.16.0/src/backend/rustbox.rs

#### Canvas labels (#543)

- Labels of the `Canvas` widget are now `text::Spans`.
The signature of `widgets::canvas::Context::print` has thus been updated:

```diff
- ctx.print(x, y, "Some text", Color::Yellow);
+ ctx.print(x, y, Span::styled("Some text", Style::default().fg(Color::Yellow)))
```

## v0.16.0 - 2021-08-01

### Features

- Update `crossterm` to `0.20`.
- Add `From<Cow<str>>` implementation for `text::Text` (#471).
- Add option to right or center align the title of a `widgets::Block` (#462).

### Fixes

- Apply label style in `widgets::Gauge` and avoid panics because of overflows with long labels (#494).
- Avoid panics because of overflows with long axis labels in `widgets::Chart` (#512).
- Fix computation of column widths in `widgets::Table` (#514).
- Fix panics because of invalid offset when input changes between two frames in `widgets::List` and
  `widgets::Chart` (#516).

## v0.15.0 - 2021-05-02

### Features

- Update `crossterm` to `0.19`.
- Update `rand` to `0.8`.
- Add a read-only view of the terminal state after the draw call (#440).

### Fixes

- Remove compile warning in `TestBackend::assert_buffer` (#466).

## v0.14.0 - 2021-01-01

### Breaking changes

#### New API for the Table widget

The `Table` widget got a lot of improvements that should make it easier to work with:

- It should not longer panic when rendered on small areas.
- `Row`s are now a collection of `Cell`s, themselves wrapping a `Text`. This means you can style
the entire `Table`, an entire `Row`, an entire `Cell` and rely on the styling capabilities of
`Text` to get full control over the look of your `Table`.
- `Row`s can have multiple lines.
- The header is now optional and is just another `Row` always visible at the top.
- `Row`s can have a bottom margin.
- The header alignment is no longer off when an item is selected.

Taking the example of the code in `examples/demo/ui.rs`, this is what you may have to change:

```diff
     let failure_style = Style::default()
         .fg(Color::Red)
         .add_modifier(Modifier::RAPID_BLINK | Modifier::CROSSED_OUT);
-    let header = ["Server", "Location", "Status"];
     let rows = app.servers.iter().map(|s| {
         let style = if s.status == "Up" {
             up_style
         } else {
             failure_style
         };
-        Row::StyledData(vec![s.name, s.location, s.status].into_iter(), style)
+        Row::new(vec![s.name, s.location, s.status]).style(style)
     });
-    let table = Table::new(header.iter(), rows)
+    let table = Table::new(rows)
+        .header(
+            Row::new(vec!["Server", "Location", "Status"])
+                .style(Style::default().fg(Color::Yellow))
+                .bottom_margin(1),
+        )
         .block(Block::default().title("Servers").borders(Borders::ALL))
-        .header_style(Style::default().fg(Color::Yellow))
         .widths(&[
             Constraint::Length(15),
             Constraint::Length(15),
```

Here, we had to:

- Change the way we construct [`Row`]https://docs.rs/tui/*/tui/widgets/struct.Row.html which is no
longer an `enum` but a `struct`. It accepts anything that can be converted to an iterator of things
that can be converted to a [`Cell`]https://docs.rs/tui/*/tui/widgets/struct.Cell.html
- The header is no longer a required parameter so we use
[`Table::header`]https://docs.rs/tui/*/tui/widgets/struct.Table.html#method.header to set it.
`Table::header_style` has been removed since the style can be directly set using
[`Row::style`]https://docs.rs/tui/*/tui/widgets/struct.Row.html#method.style. In addition, we want
to preserve the old margin between the header and the rest of the rows so we add a bottom margin to
the header using
[`Row::bottom_margin`]https://docs.rs/tui/*/tui/widgets/struct.Row.html#method.bottom_margin.

You may want to look at the documentation of the different types to get a better understanding:

- [`Table`]https://docs.rs/tui/*/tui/widgets/struct.Table.html
- [`Row`]https://docs.rs/tui/*/tui/widgets/struct.Row.html
- [`Cell`]https://docs.rs/tui/*/tui/widgets/struct.Cell.html

### Fixes

- Fix handling of Non Breaking Space (NBSP) in wrapped text in `Paragraph` widget.

### Features

- Add `Style::reset` to create a `Style` resetting all styling properties when applied.
- Add an option to render the `Gauge` widget with unicode blocks.
- Manage common project tasks with `cargo-make` rather than `make` for easier on-boarding.

## v0.13.0 - 2020-11-14

### Features

- Add `LineGauge` widget which is a more compact variant of the existing `Gauge`.
- Bump `crossterm` to 0.18

### Fixes

- Take into account the borders of the `Table` widget when the widths of columns is controlled by
`Percentage` and `Ratio` constraints.

## v0.12.0 - 2020-09-27

### Features

- Make it easier to work with string with multiple lines in `Text` (#361).

### Fixes

- Fix a style leak in `Graph` so components drawn on top of the plotted data (i.e legend and axis
titles) are not affected by the style of the `Dataset`s (#388).
- Make sure `BarChart` shows bars with the max height only when the plotted data is actually equal
to the max (#383).

## v0.11.0 - 2020-09-20

### Features

- Add the dot character as a new type of canvas marker (#350).
- Support more style modifiers on Windows (#368).

### Fixes

- Clearing the terminal through `Terminal::clear` will cause the whole UI to be redrawn (#380).
- Fix incorrect output when the first diff to draw is on the second cell of the terminal (#347).

## v0.10.0 - 2020-07-17

### Breaking changes

#### Easier cursor management

A new method has been added to `Frame` called `set_cursor`. It lets you specify where the cursor
should be placed after the draw call. Furthermore like any other widgets, if you do not set a cursor
position during a draw call, the cursor is automatically hidden.

For example:

```rust
fn draw_input(f: &mut Frame, app: &App) {
  if app.editing {
    let input_width = app.input.width() as u16;
    // The cursor will be placed just after the last character of the input
    f.set_cursor((input_width + 1, 0));
  } else {
    // We are no longer editing, the cursor does not have to be shown, set_cursor is not called and
    // thus automatically hidden.
  }
}
```

In order to make this possible, the draw closure takes in input `&mut Frame` instead of `mut Frame`.

#### Advanced text styling

It has been reported several times that the text styling capabilities were somewhat limited in many
places of the crate. To solve the issue, this release includes a new set of text primitives that are
now used by a majority of widgets to provide flexible text styling.

`Text` is replaced by the following types:

- `Span`: a string with a unique style.
- `Spans`: a string with multiple styles.
- `Text`: a multi-lines string with multiple styles.

However, you do not always need this complexity so the crate provides `From` implementations to
let you use simple strings as a default and switch to the previous primitives when you need
additional styling capabilities.

For example, the title of a `Block` can be set in the following ways:

```rust
// A title with no styling
Block::default().title("My title");
// A yellow title
Block::default().title(Span::styled("My title", Style::default().fg(Color::Yellow)));
// A title where "My" is bold and "title" is a simple string
Block::default().title(vec![
    Span::styled("My", Style::default().add_modifier(Modifier::BOLD)),
    Span::from("title")
]);
```

- `Buffer::set_spans` and `Buffer::set_span` were added.
- `Paragraph::new` expects an input that can be converted to a `Text`.
- `Block::title_style` is deprecated.
- `Block::title` expects a `Spans`.
- `Tabs` expects a list of `Spans`.
- `Gauge` custom label is now a `Span`.
- `Axis` title and labels are `Spans` (as a consequence `Chart` no longer has generic bounds).

#### Incremental styling

Previously `Style` was used to represent an exhaustive set of style rules to be applied to an UI
element. It implied that whenever you wanted to change even only one property you had to provide the
complete style. For example, if you had a `Block` where you wanted to have a green background and
a title in bold, you had to do the following:

```rust
let style = Style::default().bg(Color::Green);
Block::default()
  .style(style)
  .title("My title")
  // Here we reused the style otherwise the background color would have been reset
  .title_style(style.modifier(Modifier::BOLD));
```

In this new release, you may now write this as:

```rust
Block::default()
    .style(Style::default().bg(Color::Green))
    // The style is not overridden anymore, we simply add new style rule for the title.
    .title(Span::styled("My title", Style::default().add_modifier(Modifier::BOLD)))
```

In addition, the crate now provides a method `patch` to combine two styles into a new set of style
rules:

```rust
let style = Style::default().modifier(Modifier::BOLD);
let style = style.patch(Style::default().add_modifier(Modifier::ITALIC));
// style.modifier == Modifier::BOLD | Modifier::ITALIC, the modifier has been enriched not overridden
```

- `Style::modifier` has been removed in favor of `Style::add_modifier` and `Style::remove_modifier`.
- `Buffer::set_style` has been added. `Buffer::set_background` is deprecated.
- `BarChart::style` no longer set the style of the bars. Use `BarChart::bar_style` in replacement.
- `Gauge::style` no longer set the style of the gauge. Use `Gauge::gauge_style` in replacement.

#### List with item on multiple lines

The `List` widget has been refactored once again to support items with variable heights and complex
styling.

- `List::new` expects an input that can be converted to a `Vec<ListItem>` where `ListItem` is a
wrapper around the item content to provide additional styling capabilities. `ListItem` contains a
`Text`.
- `List::items` has been removed.

```rust
// Before
let items = vec![
  "Item1",
  "Item2",
  "Item3"
];
List::default().items(items.iters());

// After
let items = vec![
  ListItem::new("Item1"),
  ListItem::new("Item2"),
  ListItem::new("Item3"),
];
List::new(items);
```

See the examples for more advanced usages.

#### More wrapping options

`Paragraph::wrap` expects `Wrap` instead of `bool` to let users decided whether they want to trim
whitespaces when the text is wrapped.

```rust
// before
Paragraph::new(text).wrap(true)
// after
Paragraph::new(text).wrap(Wrap { trim: true }) // to have the same behavior
Paragraph::new(text).wrap(Wrap { trim: false }) // to use the new behavior
```

#### Horizontal scrolling in paragraph

You can now scroll horizontally in `Paragraph`. The argument of `Paragraph::scroll` has thus be
changed from `u16` to `(u16, u16)`.

### Features

#### Serialization of style

You can now serialize and de-serialize `Style` using the optional `serde` feature.

## v0.9.5 - 2020-05-21

### Bug Fixes

- Fix out of bounds panic in `widgets::Tabs` when the widget is rendered on
small areas.

## v0.9.4 - 2020-05-12

### Bug Fixes

- Ignore zero-width graphemes in `Buffer::set_stringn`.

## v0.9.3 - 2020-05-11

### Bug Fixes

- Fix usize overflows in `widgets::Chart` when a dataset is empty.

## v0.9.2 - 2020-05-10

### Bug Fixes

- Fix usize overflows in `widgets::canvas::Line` drawing algorithm.

## v0.9.1 - 2020-04-16

### Bug Fixes

- The `List` widget now takes into account the width of the `highlight_symbol`
when calculating the total width of its items. It prevents items to overflow
outside of the widget area.

## v0.9.0 - 2020-04-14

### Features

- Introduce stateful widgets, i.e widgets that can take advantage of keeping
some state around between two draw calls (#210 goes a bit more into the
details).
- Allow a `Table` row to be selected.

```rust
// State initialization
let mut state = TableState::default();

// In the terminal.draw closure
let header = ["Col1", "Col2", "Col"];
let rows = [
  Row::Data(["Row11", "Row12", "Row13"].into_iter())
];
let table = Table::new(header.into_iter(), rows.into_iter());
f.render_stateful_widget(table, area, &mut state);

// In response to some event:
state.select(Some(1));
```

- Add a way to choose the type of border used to draw a block. You can now
choose from plain, rounded, double and thick lines.

- Add a `graph_type` property on the `Dataset` of a `Chart` widget. By
default it will be `Scatter` where the points are drawn as is. An other
option is `Line` where a line will be draw between each consecutive points
of the dataset.
- Style methods are now const, allowing you to initialize const `Style`
objects.
- Improve control over whether the legend in the `Chart` widget is shown or
not. You can now set custom constraints using
`Chart::hidden_legend_constraints`.
- Add `Table::header_gap` to add some space between the header and the first
row.
- Remove `log` from the dependencies
- Add a way to use a restricted set of unicode symbols in several widgets to
improve portability in exchange of a degraded output. (see `BarChart::bar_set`,
`Sparkline::bar_set` and `Canvas::marker`). You can check how the
`--enhanced-graphics` flag is used in the demos.

### Breaking Changes

- `Widget::render` has been deleted. You should now use `Frame::render_widget`
to render a widget on the corresponding `Frame`. This makes the `Widget`
implementation totally decoupled from the `Frame`.

```rust
// Before
Block::default().render(&mut f, size);

// After
let block = Block::default();
f.render_widget(block, size);
```

- `Widget::draw` has been renamed to `Widget::render` and the signature has
been updated to reflect that widgets are consumable objects. Thus the method
takes `self` instead of `&mut self`.

```rust
// Before
impl Widget for MyWidget {
  fn draw(&mut self, area: Rect, buf: &mut Buffer) {
  }
}

/// After
impl Widget for MyWidget {
  fn render(self, arera: Rect, buf: &mut Buffer) {
  }
}
```

- `Widget::background` has been replaced by `Buffer::set_background`

```rust
// Before
impl Widget for MyWidget {
  fn render(self, arera: Rect, buf: &mut Buffer) {
    self.background(area, buf, self.style.bg);
  }
}

// After
impl Widget for MyWidget {
  fn render(self, arera: Rect, buf: &mut Buffer) {
    buf.set_background(area, self.style.bg);
  }
}
```

- Update the `Shape` trait for objects that can be draw on a `Canvas` widgets.
Instead of returning an iterator over its points, a `Shape` is given a
`Painter` object that provides a `paint` as well as a `get_point` method. This
gives the `Shape` more information about the surface it will be drawn to. In
particular, this change allows the `Line` shape to use a more precise and
efficient drawing algorithm (Bresenham's line algorithm).

- `SelectableList` has been deleted. You can now take advantage of the
associated `ListState` of the `List` widget to select an item.

```rust
// Before
List::new(&["Item1", "Item2", "Item3"])
  .select(Some(1))
  .render(&mut f, area);

// After

// State initialization
let mut state = ListState::default();

// In the terminal.draw closure
let list = List::new(&["Item1", "Item2", "Item3"]);
f.render_stateful_widget(list, area, &mut state);

// In response to some events
state.select(Some(1));
```

- `widgets::Marker` has been moved to `symbols::Marker`

## v0.8.0 - 2019-12-15

### Breaking Changes

- Bump crossterm to 0.14.
- Add cross symbol to the symbols list.

### Bug Fixes

- Use the value of `title_style` to style the title of `Axis`.

## v0.7.0 - 2019-11-29

### Breaking Changes

- Use `Constraint` instead of integers to specify the widths of the `Table`
widget's columns. This will allow more responsive tables.

```rust
Table::new(header, row)
  .widths(&[15, 15, 10])
  .render(f, chunk);
```

becomes:

```rust
Table::new(header, row)
  .widths(&[
    Constraint::Length(15),
    Constraint::Length(15),
    Constraint::Length(10),
  ])
  .render(f, chunk);
```

- Bump crossterm to 0.13.
- Use Github Actions for CI (Travis and Azure Pipelines integrations have been deleted).

### Features

- Add support for horizontal and vertical margins in `Layout`.

## v0.6.2 - 2019-07-16

### Features

- `Text` implements PartialEq

### Bug Fixes

- Avoid overflow errors in canvas

## v0.6.1 - 2019-06-16

### Bug Fixes

- Avoid a division by zero when all values in a barchart are equal to 0.
- Fix the inverted cursor position in the curses backend.
- Ensure that the correct terminal size is returned when using the crossterm
backend.
- Avoid highlighting the separator after the selected item in the Tabs widget.

## v0.6.0 - 2019-05-18

### Breaking Changes

- Update crossterm backend

## v0.5.1 - 2019-04-14

### Bug Fixes

- Fix a panic in the Sparkline widget

## v0.5.0 - 2019-03-10

### Features

- Add a new curses backend (with Windows support thanks to `pancurses`).
- Add `Backend::get_cursor` and `Backend::set_cursor` methods to query and
set the position of the cursor.
- Add more constructors to the `Crossterm` backend.
- Add a demo for all backends using a shared UI and application state.
- Add `Ratio` as a new variant of layout `Constraint`. It can be used to define
exact ratios constraints.

### Breaking Changes

- Add support for multiple modifiers on the same `Style` by changing `Modifier`
from an enum to a bitflags struct.

So instead of writing:

```rust
let style = Style::default().add_modifier(Modifier::Italic);
```

one should use:

```rust
let style = Style::default().add_modifier(Modifier::ITALIC);
// or
let style = Style::default().add_modifier(Modifier::ITALIC | Modifier::BOLD);
```

### Bug Fixes

- Ensure correct behavior of the alternate screens with the `Crossterm` backend.
- Fix out of bounds panic when two `Buffer` are merged.

## v0.4.0 - 2019-02-03

### Features

- Add a new canvas shape: `Rectangle`.
- Official support of `Crossterm` backend.
- Make it possible to choose the divider between `Tabs`.
- Add word wrapping on Paragraph.
- The gauge widget accepts a ratio (f64 between 0 and 1) in addition of a
percentage.

### Breaking Changes

- Upgrade to Rust 2018 edition.

### Bug Fixes

- Fix rendering of double-width characters.
- Fix race condition on the size of the terminal and expose a size that is
safe to use when drawing through `Frame::size`.
- Prevent unsigned int overflow on large screens.

## v0.3.0 - 2018-11-04

### Features

- Add experimental test backend

## v0.3.0-beta.3 - 2018-09-24

### Features

- `show_cursor` is called when `Terminal` is dropped if the cursor is hidden.

## v0.3.0-beta.2 - 2018-09-23

### Breaking Changes

- Remove custom `termion` backends. This is motivated by the fact that
`termion` structs are meant to be combined/wrapped to provide additional
functionalities to the terminal (e.g AlternateScreen, Mouse support, ...).
Thus providing exclusive types do not make a lot of sense and give a false
hint that additional features cannot be used together. The recommended
approach is now to create your own version of `stdout`:

```rust
let stdout = io::stdout().into_raw_mode()?;
let stdout = MouseTerminal::from(stdout);
let stdout = AlternateScreen::from(stdout);
```

and then to create the corresponding `termion` backend:

```rust
let backend = TermionBackend::new(stdout);
```

The resulting code is more verbose but it works with all combinations of
additional `termion` features.

## v0.3.0-beta.1 - 2018-09-08

### Breaking Changes

- Replace `Item` by a generic and flexible `Text` that can be used in both
`Paragraph` and `List` widgets.
- Remove unnecessary borrows on `Style`.

## v0.3.0-beta.0 - 2018-09-04

### Features

- Add a basic `Crossterm` backend

### Breaking Changes

- Remove `Group` and introduce `Layout` in its place
  - `Terminal` is no longer required to compute a layout
  - `Size` has been renamed `Constraint`
- Widgets are rendered on a `Frame` instead of a `Terminal` in order to
avoid mixing `draw` and `render` calls
- `draw` on `Terminal` expects a closure where the UI is built by rendering
widgets on the given `Frame`
- Update `Widget` trait
  - `draw` takes area by value
  - `render` takes a `Frame` instead of a `Terminal`
- All widgets use the consumable builder pattern
- `SelectableList` can have no selected item and the highlight symbol is hidden
in this case
- Remove markup language inside `Paragraph`. `Paragraph` now expects an iterator
of `Text` items

## v0.2.3 - 2018-06-09

### Features

- Add `start_corner` option for `List`
- Add more text alignment options for `Paragraph`

## v0.2.2 - 2018-05-06

### Features

- `Terminal` implements `Debug`

### Breaking Changes

- Use `FnOnce` instead of `FnMut` in Group::render

## v0.2.1 - 2018-04-01

### Features

- Add `AlternateScreenBackend` in `termion` backend
- Add `TermionBackend::with_stdout` in order to let an user of the library
provides its own termion struct
- Add tests and documentation for `Buffer::pos_of`
- Remove leading whitespaces when wrapping text

### Bug Fixes

- Fix `debug_assert` in `Buffer::pos_of`
- Pass the style of `SelectableList` to the underlying `List`
- Fix missing character when wrapping text
- Fix panic when specifying layout constraints

## v0.2.0 - 2017-12-26

### Features

- Add `MouseBackend` in `termion` backend to handle scroll and mouse events
- Add generic `Item` for items in a `List`
- Drop `log4rs` as a dev-dependencies in favor of `stderrlog`

### Breaking Changes

- Rename `TermionBackend` to `RawBackend` (to distinguish it from the `MouseBackend`)
- Generic parameters for `List` to allow passing iterators as items
- Generic parameters for `Table` to allow using iterators as rows and header
- Generic parameters for `Tabs`
- Rename `border` bitflags to `Borders`