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
|
.. Copyright (c) 2016, Johan Mabille, Sylvain Corlay and Wolf Vollprecht
Distributed under the terms of the BSD 3-Clause License.
The full license is in the file LICENSE, distributed with this software.
Changelog
=========
0.25.0
------
- Fix conversion warning in xrepeat
`# 2732 https://github.com/xtensor-stack/xtensor/pull/2732`
- Upraded to xsimd 11
`# 2735 https://github.com/xtensor-stack/xtensor/pull/2735`
- Update to use XTENSOR_DEFAULT_ALIGNMENT when using XSIMD
`# 2739 https://github.com/xtensor-stack/xtensor/pull/2739`
- Removed failing test xinfo on clang 16
`# 2740 https://github.com/xtensor-stack/xtensor/pull/2740`
- [CI] Switching to mamba-org/setup-micromamba
`# 2742 https://github.com/xtensor-stack/xtensor/pull/2742`
- Bump cmake version and resolve build issues
`# 2744 https://github.com/xtensor-stack/xtensor/pull/2744`
- Make reshape_view accept -1 as a wildcard dimension
`# 2746 https://github.com/xtensor-stack/xtensor/pull/2746`
- Fixing bug in argmin/argmax called with axis on rank-1 container
`# 2753 https://github.com/xtensor-stack/xtensor/pull/2753`
- pre-commit autoupdate
`# 2754 https://github.com/xtensor-stack/xtensor/pull/2754`
- Use L suffix for long double constants
`# 2762 https://github.com/xtensor-stack/xtensor/pull/2762`
- Use 1/4 step for testing arange
`# 2763 https://github.com/xtensor-stack/xtensor/pull/2763`
- [Optimization] Updated concatenate_access and stack_access to remove allocations
`# 2759 https://github.com/xtensor-stack/xtensor/pull/2759`
- [CI] Added more compilers
`# 2767 https://github.com/xtensor-stack/xtensor/pull/2767`
- Minor xindex_view to_array cleanup
`# 2765 https://github.com/xtensor-stack/xtensor/pull/2765`
0.24.7
------
- Adjust version of required xsimd in README
`# 2670 https://github.com/xtensor-stack/xtensor/pull/2670`
- Add CI through github actions.
`# 2692 https://github.com/xtensor-stack/xtensor/pull/2692`
- Added unwrap
`# 2710 https://github.com/xtensor-stack/xtensor/pull/2710`
- Removed repeated work from ci-extra build
`# 2711 https://github.com/xtensor-stack/xtensor/pull/2711`
- Removed bad macro definitions
`# 2712 https://github.com/xtensor-stack/xtensor/pull/2712`
- Fixing some iterator issues
`# 2564 https://github.com/xtensor-stack/xtensor/pull/2564`
- Fixed static analysis build
`# 2720 https://github.com/xtensor-stack/xtensor/pull/2720`
- Support external linkage for "recurser_run"
`# 2714 https://github.com/xtensor-stack/xtensor/pull/2714`
- add possibility to use std::stable_sort with xt::argsort
`# 2681 https://github.com/xtensor-stack/xtensor/pull/2681`
0.24.6
------
- Improving documentation xstrides
`# 2664 https://github.com/xtensor-stack/xtensor/pull/2664`
- Parallel and more aggressive strided assigner
`# 2660 https://github.com/xtensor-stack/xtensor/pull/2660`
- Removing duplicates from documentation
`# 2669 https://github.com/xtensor-stack/xtensor/pull/2669`
- Adding aliases xt::xtensor_pointer and xt::xarray_pointer
`# 2665 https://github.com/xtensor-stack/xtensor/pull/2665`
- Fix and refactor partition
`# 2652 https://github.com/xtensor-stack/xtensor/pull/2652`
- Fix and update pre-commit
`# 2657 https://github.com/xtensor-stack/xtensor/pull/2657`
0.24.5
------
- Add space before pragma diagnostic
`# 2654 https://github.com/xtensor-stack/xtensor/pull/2654`
- Update xtl requirement in cmake
`# 2649 https://github.com/xtensor-stack/xtensor/pull/2649`
- Fix a bug where .fill doesn't work for a xcontainer that is non-contiguous
`# 2650 https://github.com/xtensor-stack/xtensor/pull/2650`
0.24.4
------
- Align qualifiers using clang-format
`# 2647 https://github.com/xtensor-stack/xtensor/pull/2647`
- Add xt::quantile
`# 2614 https://github.com/xtensor-stack/xtensor/pull/2614`
- Add swapaxes and moveaxis
`# 2638 https://github.com/xtensor-stack/xtensor/pull/2638`
- Enforce { ... }
`# 2641 https://github.com/xtensor-stack/xtensor/pull/2641`
- Manual style fixes
`# 2642 https://github.com/xtensor-stack/xtensor/pull/2642`
- Do not step further than last element in xreducer_stepper aggregation
`# 2636 https://github.com/xtensor-stack/xtensor/pull/2636`
- Upgraded to xsimd 10.0.0
`# 2635 https://github.com/xtensor-stack/xtensor/pull/2635`
- Explicitly declare test_xtensor_core_lib as STATIC
`# 2586 https://github.com/xtensor-stack/xtensor/pull/2586`
- fix npy_file move assignment
`# 2585 https://github.com/xtensor-stack/xtensor/pull/2585`
- Install as arch-independent
`# 2588 https://github.com/xtensor-stack/xtensor/pull/2588`
- Change extended tests test header
`# 2630 https://github.com/xtensor-stack/xtensor/pull/2630`
- argmax crashes when compiled using Visual Studio compiler with O1/O2 optimizations
`# 2568 https://github.com/xtensor-stack/xtensor/pull/2568`
- Fix xindexed_view::to_end
`# 2627 https://github.com/xtensor-stack/xtensor/pull/2627`
- Change xindex_view reference type to handle const data
`# 2622 https://github.com/xtensor-stack/xtensor/pull/2622`
- Fix TBB target in CMake exported interface
`# 2617 https://github.com/xtensor-stack/xtensor/pull/2617`
- Document missing xsort functions
`# 2608 https://github.com/xtensor-stack/xtensor/pull/2608`
- Specialize get_strides_type for xbuffer_adaptor
`# 2606 https://github.com/xtensor-stack/xtensor/pull/2606`
- find external packages (threads) after defining project
`# 2575 https://github.com/xtensor-stack/xtensor/pull/2575`
0.24.3
------
- Rename and fix storage iterator
`#2534 https://github.com/xtensor-stack/xtensor/pull/2534`
- rename storage_rbegin, storage_rend, ... to linear_rbegin, ...
`#2535 https://github.com/xtensor-stack/xtensor/pull/2535`
- Enabling reference value types for xfunction.
`#2532 https://github.com/xtensor-stack/xtensor/pull/2532`
- fixing linear iterator docs.
`#2538 https://github.com/xtensor-stack/xtensor/pull/2538`
- Minor improvements for Windows (MSVC, ClangCl) support
`#2531 https://github.com/xtensor-stack/xtensor/pull/2531`
- changing static layout in xtsrided_view temporary_type to container's layout
`#2553 https://github.com/xtensor-stack/xtensor/pull/2553`
- Upgraded to xsimd 9.0.1
`#2573 https://github.com/xtensor-stack/xtensor/pull/2573`
0.24.2
------
- Fixed the documentation of adapt functions
`#2496 https://github.com/xtensor-stack/xtensor/pull/2496`
- Updated C++20 option for visual studio builds C++2a no longer a valid std option
`#2497 https://github.com/xtensor-stack/xtensor/pull/2497`
- Simplifying argmin and argmax where possible
`#2499 https://github.com/xtensor-stack/xtensor/pull/2499`
- Removed unused code
`#2502 https://github.com/xtensor-stack/xtensor/pull/2502`
- Fixed build error in MSVC 2019 by decaying decltype to base type
`#2506 https://github.com/xtensor-stack/xtensor/pull/2506`
- Added xt::convolve
`#2507 https://github.com/xtensor-stack/xtensor/pull/2507`
- Adding reset_data to xbuffer_adaptor and reset_buffer to adaptor to replace the pointer without any reallocation
`#2521 https://github.com/xtensor-stack/xtensor/pull/2521`
- Workaround for EDG C++ frontend bug
`#2528 https://github.com/xtensor-stack/xtensor/pull/2528`
- Adding cast to deal with xtensor-python's signedness of shape
`#2510 https://github.com/xtensor-stack/xtensor/pull/2510`
- Adding missing rank to xtensor_adaptor
`#2520 https://github.com/xtensor-stack/xtensor/pull/2520`
- Fixing compiler warning
`#2522 https://github.com/xtensor-stack/xtensor/pull/2522`
0.24.1
------
- Define tbb threshold
`#2455 https://github.com/xtensor-stack/xtensor/pull/2455`
- Export link interface to tbb
`#2456 https://github.com/xtensor-stack/xtensor/pull/2456`
- has_trivial_default_constructor has been removed from libstdc++ since version 7.
`#2459 https://github.com/xtensor-stack/xtensor/pull/2459`
- Added missing headers in CMake
`#2462 https://github.com/xtensor-stack/xtensor/pull/2462`
- Workaround for CMake implementations that do not use C and CXX languages
`#2467 https://github.com/xtensor-stack/xtensor/pull/2467`
- Fix erroneous less_equal usage in is_sorted calls
`#2471 https://github.com/xtensor-stack/xtensor/pull/2471`
- Adding xt::missing to operator()
`#2488 https://github.com/xtensor-stack/xtensor/pull/2488`
- Silence unused variable warning GCC
`#2494 https://github.com/xtensor-stack/xtensor/pull/2494`
- Adding xt::missing functionality to .periodic(...), .at(...), and .in_bounds(...)
`#2493 https://github.com/xtensor-stack/xtensor/pull/2493`
- Fixing internal types
`#2492 https://github.com/xtensor-stack/xtensor/pull/2492`
- Adding size assertion .flat(i) + adding a few tests on size assertions
`#2388 https://github.com/xtensor-stack/xtensor/pull/2388`
- Adding free function xt::strides
`#2489 https://github.com/xtensor-stack/xtensor/pull/2489`
0.24.0
------
- Comparison of shapes with differnt types is now supported
`#2393 https://github.com/xtensor-stack/xtensor/pull/2393`
- Ported tests to doctest
`#2405 https://github.com/xtensor-stack/xtensor/pull/2405`
- Updated docs of argmin and argmax
`#2425 https://github.com/xtensor-stack/xtensor/pull/2425`
- blockwise reducers intital implementation
`#2415 https://github.com/xtensor-stack/xtensor/pull/2415`
- Fixed comparison of double in some tests
`#2436 https://github.com/xtensor-stack/xtensor/pull/2436`
- Upgraded to xsimd 8
`#2438 https://github.com/xtensor-stack/xtensor/pull/2438`
0.23.10
-------
- Performance fix: set m_strides_computed = true after computing
`#2377 https://github.com/xtensor-stack/xtensor/pull/2377`
- argsort: catching zeros stride leading axis (bugfix)
`#2238 https://github.com/xtensor-stack/xtensor/pull/2238`
- Adding ``.flat(i)``
`#2356 https://github.com/xtensor-stack/xtensor/pull/2356`
- Fixed ``check_index`` function
`#2378 https://github.com/xtensor-stack/xtensor/pull/2378`
- Fixing & -> && in histogram
`#2386 https://github.com/xtensor-stack/xtensor/pull/2386`
- Adding ``front()`` and ``back()`` convenience methods
`#2385 https://github.com/xtensor-stack/xtensor/pull/2385`
- Adding description of index operators
`#2387 https://github.com/xtensor-stack/xtensor/pull/2387`
- flip: adding overload without axis (mimics NumPy)
`#2373 https://github.com/xtensor-stack/xtensor/pull/2373`
- average: fixing overload issue for axis argument
`#2374 https://github.com/xtensor-stack/xtensor/pull/2374`
0.23.9
------
- Fix data_offset method in xview to compute the strides only once
`#2371 https://github.com/xtensor-stack/xtensor/pull/2371`
0.23.8
------
- Specialize operator= when RHS is chunked
`#2367 https://github.com/xtensor-stack/xtensor/pull/2367`
0.23.7
------
- Fixed chunked_iterator
`#2365 https://github.com/xtensor-stack/xtensor/pull/2365`
0.23.6
------
- Update installation instructions to mention mamba
`#2357 https://github.com/xtensor-stack/xtensor/pull/2357`
- Fixed grid_shape return type
`#2360 https://github.com/xtensor-stack/xtensor/pull/2360`
- Added assertion in resize method
`#2361 https://github.com/xtensor-stack/xtensor/pull/2361`
- Added const chunk iterators
`#2362 https://github.com/xtensor-stack/xtensor/pull/2362`
- Fixed chunk assignment
`#2363 https://github.com/xtensor-stack/xtensor/pull/2363`
0.23.5
------
- No need to explicitly install blas anymore with latest xtensor-blas
`#2343 https://github.com/xtensor-stack/xtensor/pull/2343`
- FIX for xtensor-stack/xtl/issues/245
`#2344 https://github.com/xtensor-stack/xtensor/pull/2344`
- Implement grid view
`#2346 https://github.com/xtensor-stack/xtensor/pull/2346`
- Refactoring of xchunked_view
`#2353 https://github.com/xtensor-stack/xtensor/pull/2353`
0.23.4
------
- Fix edge chunk assignment
`#2342 https://github.com/xtensor-stack/xtensor/pull/2342`
0.23.3
------
- Use the correct version file for TBB since 2021.1
`#2334 https://github.com/xtensor-stack/xtensor/pull/2334`
- Add missing API RTD for nan functions
`#2333 https://github.com/xtensor-stack/xtensor/pull/2333`
- Fixed layout issue in container classes
`#2335 https://github.com/xtensor-stack/xtensor/pull/2335`
- Fixed assignment of a tensor_view on a pseudo-container
`#2336 https://github.com/xtensor-stack/xtensor/pull/2336`
- Fixed return type of data method
`#2338 https://github.com/xtensor-stack/xtensor/pull/2338`
- Fixed assignment to flatten view
`#2339 https://github.com/xtensor-stack/xtensor/pull/2339`
0.23.2
------
- MSVC Build: Wrapped linker flags in quotes
`#2299 https://github.com/xtensor-stack/xtensor/pull/2299`
- Added can_assign and enable_assignable_expression
`#2323 https://github.com/xtensor-stack/xtensor/pull/2323`
- Fix automatically generated tests
`#2313 https://github.com/xtensor-stack/xtensor/pull/2313`
- Fix linspace endpoint bug
`#2306 https://github.com/xtensor-stack/xtensor/pull/2306`
- Added fallback to old behavior in FindTBB.cmake
`#2325 https://github.com/xtensor-stack/xtensor/pull/2325`
- Implement nanmin and nanmax
`#2314 https://github.com/xtensor-stack/xtensor/pull/2314`
- Clean up and add more tests for nanmin and nanmax
`#2326 https://github.com/xtensor-stack/xtensor/pull/2326`
- Fix linespace with only one point
`#2327 https://github.com/xtensor-stack/xtensor/pull/2327`
- Fixed ambiguous call of tile
`#2329 https://github.com/xtensor-stack/xtensor/pull/2329`
0.23.1
------
- Fix compilation warnings on unused local typedefs
`#2295 https://github.com/xtensor-stack/xtensor/pull/2295`
- Disable a failing shuffle test for clang
`#2294 https://github.com/xtensor-stack/xtensor/pull/2294`
- Fix simd assign_data
`#2292 https://github.com/xtensor-stack/xtensor/pull/2292`
- Fix -Wshadow and -Wunused-local-typedef warning
`#2293 https://github.com/xtensor-stack/xtensor/pull/2293`
- Documentation improvement Part #B
`#2287 https://github.com/xtensor-stack/xtensor/pull/2287`
0.23.0
------
Breaking changes
~~~~~~~~~~~~~~~~
- Remove chunked array extension mechanism
`#2283 <https://github.com/xtensor-stack/xtensor/pull/2283>`_
- Upgraded to xtl 0.7.0
`#2284 <https://github.com/xtensor-stack/xtensor/pull/2284>`_
Other changes
~~~~~~~~~~~~~
- Harmonize #include statements in doc
`#2280 <https://github.com/xtensor-stack/xtensor/pull/2280>`_
- Added missing shape_type in xfunctor_stepper
`#2285 <https://github.com/xtensor-stack/xtensor/pull/2285>`_
0.22.0
------
Breaking changes
~~~~~~~~~~~~~~~~
- Drop support of 3.* Clang versions
`#2251 <https://github.com/xtensor-stack/xtensor/pull/2251>`_
- Fix reducers assignment
`#2254 <https://github.com/xtensor-stack/xtensor/pull/2254>`_
- Removed reducer ``big_promote_type``
`#2277 <https://github.com/xtensor-stack/xtensor/pull/2277>`_
Other changes
~~~~~~~~~~~~~
- Improve histogram performance with equal bin sizes
`#2088 <https://github.com/xtensor-stack/xtensor/pull/2088>`_
- Added missing header in xfixed
`#2225 <https://github.com/xtensor-stack/xtensor/pull/2225>`_
- Implement xt::random::choice with weights vector
`#2241 <https://github.com/xtensor-stack/xtensor/pull/2241>`_
- Testing alignment
`#2246 <https://github.com/xtensor-stack/xtensor/pull/2246>`_
- Add reducers tests
`#2252 <https://github.com/xtensor-stack/xtensor/pull/2252>`_
- Fix binary operators on complex
`#2253 <https://github.com/xtensor-stack/xtensor/pull/2253>`_
- Removed not implemented assign method from xchunked_array
`#2256 <https://github.com/xtensor-stack/xtensor/pull/2256>`_
- Support initialized list for chunked_array shapes
`#2258 <https://github.com/xtensor-stack/xtensor/pull/2258>`_
- Add as_strided free function
`#2261 <https://github.com/xtensor-stack/xtensor/pull/2261>`_
- Fix histogram compatibility with containers beyond xtensor
`#2263 <https://github.com/xtensor-stack/xtensor/pull/2263>`_
- Fixed broadcasting with keep_slice that holds a single element
`#2270 <https://github.com/xtensor-stack/xtensor/pull/2270>`_
- Make xt::cast and xtl::optional compatible
`#2271 <https://github.com/xtensor-stack/xtensor/pull/2271>`_
- Fix minor warnings detected by clang
`#2272 <https://github.com/xtensor-stack/xtensor/pull/2272>`_
- Extra assert in mean computation wrt. ddof
`#2273 <https://github.com/xtensor-stack/xtensor/pull/2273>`_
- Provide a -Werror mode and ensure xtensor passes with it
`#2274 <https://github.com/xtensor-stack/xtensor/pull/2274>`_
- Moved layout_remove_any to xlayout.hpp
`#2275 <https://github.com/xtensor-stack/xtensor/pull/2275>`_
- Provide a -Werror mode and ensure xtensor passes with it
`#2274 <https://github.com/xtensor-stack/xtensor/pull/2274>`_
- Slight reorganization of the documentation
`#2276 <https://github.com/xtensor-stack/xtensor/pull/2276>`_
- Updated reducer docs according to recent changes
`#2278 <https://github.com/xtensor-stack/xtensor/pull/2278>`_
- Added template parameter for initial value type in accumulators
`#2279 <https://github.com/xtensor-stack/xtensor/pull/2279>`_
0.21.10
-------
- Document chunked arrays
`#2102 <https://github.com/xtensor-stack/xtensor/pull/2102>`_
- Removed ``zarray`` files
`#2221 <https://github.com/xtensor-stack/xtensor/pull/2221>`_
- Improved ``xeval``
`#2223 <https://github.com/xtensor-stack/xtensor/pull/2223>`_
- Fixed various warnings
`#2224 <https://github.com/xtensor-stack/xtensor/pull/2224>`_
0.21.9
------
- Adding macro ``XTENSOR_SELECT_ALIGN``
`#2152 <https://github.com/xtensor-stack/xtensor/pull/2152>`_
- xcontainer.hpp: Renamed a shadowing type name inside a function
`#2208 <https://github.com/xtensor-stack/xtensor/pull/2208>`_
- Add chunk_memory_layout to chunked_array factory
`#2211 <https://github.com/xtensor-stack/xtensor/pull/2211>`_
- CMake: Modernized GTest-integration
`#2212 <https://github.com/xtensor-stack/xtensor/pull/2212>`_
- ``xnpy.hpp``: fix multiple definition of 'host_endian_char' variable when included in different linked objects
`#2214 <https://github.com/xtensor-stack/xtensor/pull/2214>`_
- Made global variable const to force internal linkage
`#2216 <https://github.com/xtensor-stack/xtensor/pull/2216>`_
- Use xtl::endianness instead of bundling it
`#2218 <https://github.com/xtensor-stack/xtensor/pull/2218>`_
- Fix call to resize of chunk container
`#2219 <https://github.com/xtensor-stack/xtensor/pull/2219>`_
0.21.8
------
- Fix undefined behavior while testing shifts
`#2175 <https://github.com/xtensor-stack/xtensor/pull/2175>`_
- Fix ``zarray`` initialization from ``zarray``
`#2180 <https://github.com/xtensor-stack/xtensor/pull/2180>`_
- Portable and generic implementation of endianess detection
`#2182 <https://github.com/xtensor-stack/xtensor/pull/2182>`_
- Fix xnpy save padding computation
`#2183 <https://github.com/xtensor-stack/xtensor/pull/2183>`_
- Only use ``-march=native`` if it's available
`#2184 <https://github.com/xtensor-stack/xtensor/pull/2184>`_
- Fix ``xchunked_array`` assignment
`#2177 <https://github.com/xtensor-stack/xtensor/pull/2177>`_
- Add specific ``xchunked_array`` constructor for ``xchunk_store_manager``
`#2188 <https://github.com/xtensor-stack/xtensor/pull/2188>`_
- Make xnpy tests aware of both little and big endian targets
`#2189 <https://github.com/xtensor-stack/xtensor/pull/2189>`_
- Fixed constructors of ``xchunked_array``
`#2190 <https://github.com/xtensor-stack/xtensor/pull/2190>`_
- First implementation of ``zchunked_wrapper``
`#2193 <https://github.com/xtensor-stack/xtensor/pull/2193>`_
- Don't mark dirty a resized or reshaped ``xfile_array``
`#2194 <https://github.com/xtensor-stack/xtensor/pull/2194>`_
- Replaced catch-all constructor of ``zarray`` with more restrictive ones
`#2195 <https://github.com/xtensor-stack/xtensor/pull/2195>`_
- Fixed SFINAE based on ``xchunked_store_manager``
`#2197 <https://github.com/xtensor-stack/xtensor/pull/2197>`_
- Fix generated cmake config to include missing required lib
`#2200 <https://github.com/xtensor-stack/xtensor/pull/2200>`_
- Add ``set_chunk_shape`` to the first chunk of the pool
`#2198 <https://github.com/xtensor-stack/xtensor/pull/2198>`_
- Chunked array refactoring
`#2201 <https://github.com/xtensor-stack/xtensor/pull/2201>`_
- Refactored ``xchunked_array`` semantic
`#2202 <https://github.com/xtensor-stack/xtensor/pull/2202>`_
- Added missing header to CMakeLists.txt
`#2203 <https://github.com/xtensor-stack/xtensor/pull/2203>`_
- Fixed ``load_simd`` for ``xcomplex``
`#2204 <https://github.com/xtensor-stack/xtensor/pull/2204>`_
- Upgraded to xtl 0.6.20
`#2206 <https://github.com/xtensor-stack/xtensor/pull/2206>`_
- changed std traits to new ``xtl::xtraits``
`#2205 <https://github.com/xtensor-stack/xtensor/pull/2205>`_
- ``xstorage.hpp``: Renamed a shadowing variable inside a function
`#2207 <https://github.com/xtensor-stack/xtensor/pull/2207>`_
0.21.7
------
- Removed zheaders from single header
`#2157 <https://github.com/xtensor-stack/xtensor/pull/2157>`_
- Implemented insertion of range and intializer list in svector
`#2165 <https://github.com/xtensor-stack/xtensor/pull/2165>`_
- Adding has_shape
`#2163 <https://github.com/xtensor-stack/xtensor/pull/2163>`_
- Adding get_rank and has_fixed_rank
`#2162 <https://github.com/xtensor-stack/xtensor/pull/2162>`_
- Zrefactoring
`#2140 <https://github.com/xtensor-stack/xtensor/pull/2140>`_
- Added missing header
`#2169 <https://github.com/xtensor-stack/xtensor/pull/2169>`_
- Extending docs random
`#2173 <https://github.com/xtensor-stack/xtensor/pull/2173>`_
0.21.6
------
- Added implementation of ``isin`` and ``in1d``
`#2021 <https://github.com/xtensor-stack/xtensor/pull/2021>`_
- Wrote single include header
`#2031 <https://github.com/xtensor-stack/xtensor/pull/2031>`_
- Added details for ``xt::random`` to docs
`#2043 <https://github.com/xtensor-stack/xtensor/pull/2043>`_
- Added ``digitize``, ``searchsorted``, and ``bin_items``
`#2037 <https://github.com/xtensor-stack/xtensor/pull/2037>`_
- Fixed error with zero tensor size in ``xt::mean``
`#2047 <https://github.com/xtensor-stack/xtensor/pull/2047>`_
- Fixed initialization order in ``xfunction``
`#2050 <https://github.com/xtensor-stack/xtensor/pull/2050>`_
- ``adapt_smart_ptr`` overloads now accept STL-like container as shape
`#2052 <https://github.com/xtensor-stack/xtensor/pull/2052>`_
- Added ``xchunked_array``
`#2076 <https://github.com/xtensor-stack/xtensor/pull/2076>`_
- ``xchunked_array`` inherits from ``xiterable``
`#2082 <https://github.com/xtensor-stack/xtensor/pull/2082>`_
- ``xchunked_array`` inherits from ``xcontainer_semantic``
`#2083 <https://github.com/xtensor-stack/xtensor/pull/2083>`_
- Fixed assignment operator of ``xchunked_array``
`#2084 <https://github.com/xtensor-stack/xtensor/pull/2084>`_
- Added constructors from ``xexpression`` and ``chunk_shape`` to ``xchunked_array``
`#2087 <https://github.com/xtensor-stack/xtensor/pull/2087>`_
- Fixed chunk layout
`#2091 <https://github.com/xtensor-stack/xtensor/pull/2091>`_
- Copy constructor gets expression's chunk_shape if it is chunked
`#2092 <https://github.com/xtensor-stack/xtensor/pull/2092>`_
- Replaced template parameter chunk_type with chunk_storage
`#2095 <https://github.com/xtensor-stack/xtensor/pull/2095>`_
- Implemented on-disk chunked array
`#2096 <https://github.com/xtensor-stack/xtensor/pull/2096>`_
- Implemented chunk pool in xchunk_store_manager
`#2099 <https://github.com/xtensor-stack/xtensor/pull/2099>`_
- ``xfile_array`` is now an expression
`#2107 <https://github.com/xtensor-stack/xtensor/pull/2107>`_
- ``xchunked_array`` code cleanup
`#2109 <https://github.com/xtensor-stack/xtensor/pull/2109>`_
- ``xchunked_store_manager`` code cleanup
`#2110 <https://github.com/xtensor-stack/xtensor/pull/2110>`_
- Refactored ``xfile_array``
`#2117 <https://github.com/xtensor-stack/xtensor/pull/2117>`_
- Added simd accessors to ``xfil_array_container``
`#2118 <https://github.com/xtensor-stack/xtensor/pull/2118>`_
- Abstracted file format through a formal class
`#2115 <https://github.com/xtensor-stack/xtensor/pull/2115>`_
- Added ``xchunked_array`` extension template
`#2122 <https://github.com/xtensor-stack/xtensor/pull/2122>`_
- Refactored ``xdisk_io_handler``
`#2123 <https://github.com/xtensor-stack/xtensor/pull/2123>`_
- Fixed exception for file write operation
`#2125 <https://github.com/xtensor-stack/xtensor/pull/2125>`_
- Implemented ``zarray``
`#2127 <https://github.com/xtensor-stack/xtensor/pull/2127>`_
- Implemented the skeleton of the dynamic expression system
`#2129 <https://github.com/xtensor-stack/xtensor/pull/2129>`_
- Implemented zfunctions, equivalent of xfunction for dynamic expression system
`#2130 <https://github.com/xtensor-stack/xtensor/pull/2130>`_
- Implemented ``allocate_result`` in ``zfunction``
`#2132 <https://github.com/xtensor-stack/xtensor/pull/2132>`_
- Implemented assign mechanism for ``zarray``
`#2133 <https://github.com/xtensor-stack/xtensor/pull/2133>`_
- Added xindex_path to transform indexes into path
`#2131 <https://github.com/xtensor-stack/xtensor/pull/2131>`_
- Fixing various compiler warnings
`#2145 <https://github.com/xtensor-stack/xtensor/pull/2145>`_
- Removed conversion and initialization warnings
`#2141 <https://github.com/xtensor-stack/xtensor/pull/2141>`_
0.21.5
------
- Fix segfault when using ``xt::drop`` on an empty list of indices
`#1990 <https://github.com/xtensor-stack/xtensor/pull/1990>`_
- Implemented missing methods in ``xrepeat`` class
`#1993 <https://github.com/xtensor-stack/xtensor/pull/1993>`_
- Added extension base to ``xrepeat`` and clean up ``xbroadcast``
`#1994 <https://github.com/xtensor-stack/xtensor/pull/1994>`_
- Fix return type of ``nanmean`` and add unittest
`#1996 <https://github.com/xtensor-stack/xtensor/pull/1996>`_
- Add result type template argument for ``stddev``, ``variance``, ``nanstd`` and ``nanvar``
`#1999 <https://github.com/xtensor-stack/xtensor/pull/1999>`_
- Fix variance overload
`#2002 <https://github.com/xtensor-stack/xtensor/pull/2002>`_
- Added missing ``xaxis_slice_iterator`` header to CMakeLists.txt
`#2009 <https://github.com/xtensor-stack/xtensor/pull/2009>`_
- Fixed xview on const keep and const drop slices
`#2010 <https://github.com/xtensor-stack/xtensor/pull/2010>`_
- Added ``static_assert`` to ``adapt`` methods
`#2015 <https://github.com/xtensor-stack/xtensor/pull/2015>`_
- Removed allocator deprecated calls
`#2018 <https://github.com/xtensor-stack/xtensor/pull/2018>`_
- Added missing overload of ``push_back`` to ``svector``
`#2024 <https://github.com/xtensor-stack/xtensor/pull/2024>`_
- Initialized all members of ``xfunciton_cache_impl``
`#2026 <https://github.com/xtensor-stack/xtensor/pull/2026>`_
0.21.4
------
- Fix warning -Wsign-conversion in ``xview``
`#1902 <https://github.com/xtensor-stack/xtensor/pull/1902>`_
- Fixed issue due to thread_local storage on some architectures
`#1905 <https://github.com/xtensor-stack/xtensor/pull/1905>`_
- benchmark/CMakeLists.txt: fixed a tiny spelling mistake
`#1904 <https://github.com/xtensor-stack/xtensor/pull/1904>`_
- nd-iterator implementation
`#1891 <https://github.com/xtensor-stack/xtensor/pull/1891>`_
- Add GoatCounter analytics for the documentation
`#1908 <https://github.com/xtensor-stack/xtensor/pull/1908>`_
- Added ``noexcept`` in ``svector``
`#1919 <https://github.com/xtensor-stack/xtensor/pull/1919>`_
- Add implementation of repeat (similar to NumPy)
`#1896 <https://github.com/xtensor-stack/xtensor/pull/1896>`_
- Fix initialization of out shape in ``xt::tile``
`#1923 <https://github.com/xtensor-stack/xtensor/pull/1923>`_
- ``xaxis_slice_iterator`` – Iterates over 1D slices oriented along the specified axis
`#1916 <https://github.com/xtensor-stack/xtensor/pull/1916>`_
- Fixed cxx11 lib guard
`#1925 <https://github.com/xtensor-stack/xtensor/pull/1925>`_
- Fixed CXX11 ABI when _GLIBCXX_USE_DUAL_ABI is set to 0
`#1927 <https://github.com/xtensor-stack/xtensor/pull/1927>`_
- Enabling array-bounds warning
`#1933 <https://github.com/xtensor-stack/xtensor/pull/1933>`_
- Fixed warnings
`#1934 <https://github.com/xtensor-stack/xtensor/pull/1934>`_
- Compile with g++ instead of gcc, clarify include directories
`#1938 <https://github.com/xtensor-stack/xtensor/pull/1938>`_
- broadcast function now accepts fixed shapes
`#1939 <https://github.com/xtensor-stack/xtensor/pull/1939>`_
- Don't print decimal point after ``inf`` or ``nan``
`#1940 <https://github.com/xtensor-stack/xtensor/pull/1940>`_
- Improved performance of ``xt::tile``
`#1943 <https://github.com/xtensor-stack/xtensor/pull/1943>`_
- Refactoring CI
`#1942 <https://github.com/xtensor-stack/xtensor/pull/1942>`_
- Documentation build: Switched to channel QuantStack
`#1948 <https://github.com/xtensor-stack/xtensor/pull/1948>`_
- Removed warnings due to gtest upgrade
`#1949 <https://github.com/xtensor-stack/xtensor/pull/1949>`_
- Fixed flatten view of view
`#1950 <https://github.com/xtensor-stack/xtensor/pull/1950>`_
- Improved narrative documentation of reducers
`#1958 <https://github.com/xtensor-stack/xtensor/pull/1958>`_
- Add test for printing xarray of type ``size_t``
`#1947 <https://github.com/xtensor-stack/xtensor/pull/1947>`_
- Added documentation for iterators
`#1961 <https://github.com/xtensor-stack/xtensor/pull/1961>`_
- Fixed ``check_element_index`` behavior for 0-D expressions
`#1965 <https://github.com/xtensor-stack/xtensor/pull/1965>`_
- Fixed ``element`` method of xreducer
`#1966 <https://github.com/xtensor-stack/xtensor/pull/1966>`_
- Fixed ``cast`` for third-party types
`#1967 <https://github.com/xtensor-stack/xtensor/pull/1967>`_
- fix ``xoperation``
`#1790 <https://github.com/xtensor-stack/xtensor/pull/1790>`_
- Added installation instruction with MinGW
`#1969 <https://github.com/xtensor-stack/xtensor/pull/1969>`_
- ``xrepeat`` now stores ``const_xclosure_t<E>`` instead of ``E``
`#1968 <https://github.com/xtensor-stack/xtensor/pull/1968>`_
- Fixed ``argpartition`` leading axis test
`#1971 <https://github.com/xtensor-stack/xtensor/pull/1971>`_
- Added tests with C++20 enabled
`#1974 <https://github.com/xtensor-stack/xtensor/pull/1974>`_
- Added documentation for ``repeat``
`#1975 <https://github.com/xtensor-stack/xtensor/pull/1975>`_
- Fixed sort and partition
`#1976 <https://github.com/xtensor-stack/xtensor/pull/1976>`_
- xt::view now supports negative indices
`#1979 <https://github.com/xtensor-stack/xtensor/pull/1979>`_
0.21.3
------
- Allow use of cmake add_subdirectory(xtensor) by checking for xtl target
`#1865 <https://github.com/xtensor-stack/xtensor/pull/1865>`_
- Simplifying CMake config
`#1856 <https://github.com/xtensor-stack/xtensor/pull/1856>`_
- Fixed ``reshape`` with signed integers
`#1867 <https://github.com/xtensor-stack/xtensor/pull/1867>`_
- Disabled MSVC iterator checks
`#1874 <https://github.com/xtensor-stack/xtensor/pull/1874>`_
- Added covariance function
`#1847 <https://github.com/xtensor-stack/xtensor/pull/1847>`_
- Fix for older cmake
`#1880 <https://github.com/xtensor-stack/xtensor/pull/1880>`_
- Added row and col facade for 2-D contianers
`#1876 <https://github.com/xtensor-stack/xtensor/pull/1876>`_
- Implementation of ``xt::tile``
`#1888 <https://github.com/xtensor-stack/xtensor/pull/1888>`_
- Fixed ``reshape`` return
`#1886 <https://github.com/xtensor-stack/xtensor/pull/1886>`_
- Enabled ``add_subdirectory`` for *xsimd*
`#1889 <https://github.com/xtensor-stack/xtensor/pull/1889>`_
- Support ``ddof`` argument for ``xt::variance``
`#1893 <https://github.com/xtensor-stack/xtensor/pull/1893>`_
- Set -march=native only if the user did not set another -march already
`#1899 <https://github.com/xtensor-stack/xtensor/pull/1899>`_
- Assemble new container in ``xpad``
`#1808 <https://github.com/xtensor-stack/xtensor/pull/1808>`_
0.21.2
------
- Upgraded to gtest 1.10.0
`#1859 <https://github.com/xtensor-stack/xtensor/pull/1859>`_
- Upgraded to xsimd 7.4.4
`#1864 <https://github.com/xtensor-stack/xtensor/pull/1864>`_
- Removed allocator deprecated calls
`#1862 <https://github.com/xtensor-stack/xtensor/pull/1862>`_
0.21.1
------
- Added circular includes check
`#1853 <https://github.com/xtensor-stack/xtensor/pull/1853>`_
- Removed cricular dependencies
`#1854 <https://github.com/xtensor-stack/xtensor/pull/1854>`_
0.21.0
------
Breaking changes
~~~~~~~~~~~~~~~~
- Dynamic SIMD assign
`#1762 <https://github.com/xtensor-stack/xtensor/pull/1762>`_
Other changes
~~~~~~~~~~~~~
- Updated links to other projects
`#1773 <https://github.com/xtensor-stack/xtensor/pull/1773>`_
- Updated license
`#1774 <https://github.com/xtensor-stack/xtensor/pull/1774>`_
- Updated related projects
`#1775 <https://github.com/xtensor-stack/xtensor/pull/1775>`_
- Fixed ``has_simd_interface`` for non existing ``simd_return_type``
`#1779 <https://github.com/xtensor-stack/xtensor/pull/1779>`_
- Added average overload for default equal weights
`#1789 <https://github.com/xtensor-stack/xtensor/pull/1789>`_
- Implemented concatenation of ``fixed_shape`` tensors
`#1793 <https://github.com/xtensor-stack/xtensor/pull/1793>`_
- Replaced ``new`` with ``unique_ptr`` in headers
`#1800 <https://github.com/xtensor-stack/xtensor/pull/1800>`_
- Fixed reallocation when an ``xbuffer`` is copied over
`#1799 <https://github.com/xtensor-stack/xtensor/pull/1799>`_
- Added hte ability to use the library with ``-fnoexception``
`#1801 <https://github.com/xtensor-stack/xtensor/pull/1801>`_
- Minor efficiency improvement
`#1807 <https://github.com/xtensor-stack/xtensor/pull/1807>`_
- Unified ``xt::concatenate`` and ``xt::concatenate_fixed``
`#1805 <https://github.com/xtensor-stack/xtensor/pull/1805>`_
- Have ``reshape`` method return a reference to self
`#1813 <https://github.com/xtensor-stack/xtensor/pull/1813>`_
- Enabling tests of ``xtensor_fixed`` on Windows with clang.
`#1815 <https://github.com/xtensor-stack/xtensor/pull/1815>`_
- Disabled SIMD assignment when bool conversion occurs
`#1818 <https://github.com/xtensor-stack/xtensor/pull/1818>`_
- Speed up views, added SIMD interface to strided views
`#1627 <https://github.com/xtensor-stack/xtensor/pull/1627>`_
- Fixed assignment of scalar to complex
`#1828 <https://github.com/xtensor-stack/xtensor/pull/1828>`_
- Fixed concurrency issue in ``flat_expression_adaptor``
`#1831 <https://github.com/xtensor-stack/xtensor/pull/1831>`_
- Implemented an equivalent to ``numpy.roll``
`#1823 <https://github.com/xtensor-stack/xtensor/pull/1823>`_
- Upgraded to ``xtl 0.6.9``
`#1839 <https://github.com/xtensor-stack/xtensor/pull/1839>`_
- Fixed type of OpenMP's index variable on Windows
`#1838 <https://github.com/xtensor-stack/xtensor/pull/1838>`_
- Implemented ``hstack`` and ``vstack``
`#1841 <https://github.com/xtensor-stack/xtensor/pull/1841>`_
- Implemented ``hsplit`` and ``vsplit``
`#1842 <https://github.com/xtensor-stack/xtensor/pull/1842>`_
- Fixed behavior of ``diff`` when ``n`` is greater thant the number of elements
`#1843 <https://github.com/xtensor-stack/xtensor/pull/1843>`_
- Added treshold to OpenMP parallelization
`#1849 <https://github.com/xtensor-stack/xtensor/pull/1849>`_
- Added missing assign operator in ``xmasked_view``
`#1850 <https://github.com/xtensor-stack/xtensor/pull/1850>`_
- Updated CMake target
`#1851 <https://github.com/xtensor-stack/xtensor/pull/1851>`_
0.20.10
-------
- Simplified functors definition
`#1756 <https://github.com/xtensor-stack/xtensor/pull/1756>`_
- Fixed ``container_simd_return_type``
`#1759 <https://github.com/xtensor-stack/xtensor/pull/1759>`_
- Fixed reducer init for ``xtensor_fixed`` value type
`#1761 <https://github.com/xtensor-stack/xtensor/pull/1761>`_
0.20.9
------
- Added alias to check if type is ``xsemantic_base``
`#1673 <https://github.com/xtensor-stack/xtensor/pull/1673>`_
- Added missing include ``xoperation.hpp``
`#1674 <https://github.com/xtensor-stack/xtensor/pull/1674>`_
- Moved XSIMD and TBB dependencies to tests only
`#1676 <https://github.com/xtensor-stack/xtensor/pull/1676>`_
- Added missing coma
`#1680 <https://github.com/xtensor-stack/xtensor/pull/1680>`_
- Added NumPy-like parameter in ``load_csv``
`#1682 <https://github.com/xtensor-stack/xtensor/pull/1682>`_
- Added ``shape()`` method to ``xshape.hpp``
`#1592 <https://github.com/xtensor-stack/xtensor/pull/1592>`_
- Added shape print tip to docs
`#1693 <https://github.com/xtensor-stack/xtensor/pull/1693>`_
- Fix lvalue npy_file heap corruption in MSVC
`#1697 <https://github.com/xtensor-stack/xtensor/pull/1697>`_
- Fix UB when parsing 1-dimension npy
`#1696 <https://github.com/xtensor-stack/xtensor/pull/1696>`_
- Fixed compiler error (missing ``shape`` method in ``xbroadcast`` and ``xscalar``)
`#1699 <https://github.com/xtensor-stack/xtensor/pull/1699>`_
- Added: deg2rad, rad2deg, degrees, radians
`#1700 <https://github.com/xtensor-stack/xtensor/pull/1700>`_
- Despecialized xt::to_json and xt::from_json
`#1691 <https://github.com/xtensor-stack/xtensor/pull/1691>`_
- Added coverity
`#1577 <https://github.com/xtensor-stack/xtensor/pull/1577>`_
- Additional configuration for future coverity branch
`#1712 <https://github.com/xtensor-stack/xtensor/pull/1712>`_
- More tests for coverity
`#1714 <https://github.com/xtensor-stack/xtensor/pull/1714>`_
- Update README.md for Conan installation instructions
`#1717 <https://github.com/xtensor-stack/xtensor/pull/1717>`_
- Reset stream's flags after output operation
`#1718 <https://github.com/xtensor-stack/xtensor/pull/1718>`_
- Added missing include in ``xview.hpp``
`#1719 <https://github.com/xtensor-stack/xtensor/pull/1719>`_
- Removed usage of allocator's members that are deprecated in C++17
`#1720 <https://github.com/xtensor-stack/xtensor/pull/1720>`_
- Added tests for mixed assignment
`#1721 <https://github.com/xtensor-stack/xtensor/pull/1721>`_
- Fixed ``step_simd`` when underlying iterator holds an ``xscalar_stepper``
`#1724 <https://github.com/xtensor-stack/xtensor/pull/1724>`_
- Fixed accumulator for empty arrays
`#1725 <https://github.com/xtensor-stack/xtensor/pull/1725>`_
- Use ``temporary_type`` in implementation of ``xt::diff``
`#1727 <https://github.com/xtensor-stack/xtensor/pull/1727>`_
- CMakeLists.txt: bumped up xsimd required version to 7.2.6
`#1728 <https://github.com/xtensor-stack/xtensor/pull/1728>`_
- Fixed reducers on empty arrays
`#1729 <https://github.com/xtensor-stack/xtensor/pull/1729>`_
- Implemented additional random distributions
`#1708 <https://github.com/xtensor-stack/xtensor/pull/1708>`_
- Fixed reducers: passing the same axis many times now throws
`#1730 <https://github.com/xtensor-stack/xtensor/pull/1730>`_
- Made ``xfixed_container`` optionally sharable
`#1733 <https://github.com/xtensor-stack/xtensor/pull/1733>`_
- ``step_simd`` template parameter is now the value type instead of the simd type
`#1736 <https://github.com/xtensor-stack/xtensor/pull/1736>`_
- Implemented OpenMP Parallelization.
`#1739 <https://github.com/xtensor-stack/xtensor/pull/1739>`_
- Readme improvements
`#1741 <https://github.com/xtensor-stack/xtensor/pull/1741>`_
- Vectorized ``xt::where``
`#1738 <https://github.com/xtensor-stack/xtensor/pull/1738>`_
- Fix typos and wording in documentation
`#1745 <https://github.com/xtensor-stack/xtensor/pull/1745>`_
- Upgraded to xtl 0.6.6. and xsimd 7.4.0
`#1747 <https://github.com/xtensor-stack/xtensor/pull/1747>`_
- Improve return value type for ``nanmean``
`#1749 <https://github.com/xtensor-stack/xtensor/pull/1749>`_
- Allows (de)serialization of xexpressions in NumPy formatted strings and streams
`#1751 <https://github.com/xtensor-stack/xtensor/pull/1751>`_
- Enabled vectorization of boolean operations
`#1748 <https://github.com/xtensor-stack/xtensor/pull/1748>`_
- Added the list of contributors
`#1755 <https://github.com/xtensor-stack/xtensor/pull/1755>`_
0.20.8
------
- Added traversal order to ``argwhere`` and ``filter``
`#1672 <https://github.com/xtensor-stack/xtensor/pull/1672>`_
- ``flatten`` now returns the new type ``xtensor_view``
`#1671 <https://github.com/xtensor-stack/xtensor/pull/1671>`_
- Error case handling in ``concatenate``
`#1669 <https://github.com/xtensor-stack/xtensor/pull/1669>`_
- Added assign operator from ``temporary_type`` in ``xiterator_adaptor``
`#1668 <https://github.com/xtensor-stack/xtensor/pull/1668>`_
- Improved ``index_view`` examples
`#1667 <https://github.com/xtensor-stack/xtensor/pull/1667>`_
- Updated build option section of the documentation
`#1666 <https://github.com/xtensor-stack/xtensor/pull/1666>`_
- Made ``xsequence_view`` convertible to arbitrary sequence type providing iterators
`#1657 <https://github.com/xtensor-stack/xtensor/pull/1657>`_
- Added overload of ``is_linear`` for expressions without ``strides`` method
`#1655 <https://github.com/xtensor-stack/xtensor/pull/1655>`_
- Fixed reverse ``arange``
`#1653 <https://github.com/xtensor-stack/xtensor/pull/1653>`_
- Add warnings for random number generation
`#1652 <https://github.com/xtensor-stack/xtensor/pull/1652>`_
- Added common pitfalls section in the documentation
`#1649 <https://github.com/xtensor-stack/xtensor/pull/1649>`_
- Added missing ``shape`` overload in ``xfunction``
`#1650 <https://github.com/xtensor-stack/xtensor/pull/1650>`_
- Made ``xconst_accessible::shape(std::size_t)`` visible in ``xview``
`#1645 <https://github.com/xtensor-stack/xtensor/pull/1645>`_
- Diff: added bounds-check on maximal recursion
`#1640 <https://github.com/xtensor-stack/xtensor/pull/1640>`_
- Add ``xframe`` to related projects
`#1635 <https://github.com/xtensor-stack/xtensor/pull/1635>`_
- Update ``indice.rst``
`#1626 <https://github.com/xtensor-stack/xtensor/pull/1626>`_
- Remove unecessary arguments
`#1624 <https://github.com/xtensor-stack/xtensor/pull/1624>`_
- Replace ``auto`` with explicit return type in ``make_xshared``
`#1621 <https://github.com/xtensor-stack/xtensor/pull/1621>`_
- Add `z5` to related projects
`#1620 <https://github.com/xtensor-stack/xtensor/pull/1620>`_
- Fixed long double complex offset views
`#1614 <https://github.com/xtensor-stack/xtensor/pull/1614>`_
- Fixed ``xpad`` bugs
`#1607 <https://github.com/xtensor-stack/xtensor/pull/1602>`_
- Workaround for annoying bug in VS2017
`#1602 <https://github.com/xtensor-stack/xtensor/pull/1607>`_
0.20.7
------
- Fix reshape view assignment and allow setting traversal order
`#1598 <https://github.com/xtensor-stack/xtensor/pull/1598>`_
0.20.6
------
- Added XTENSOR_DEFAULT_ALIGNMENT macro
`#1597 <https://github.com/xtensor-stack/xtensor/pull/1597>`_
- Added missing comparison operators for const_array
`#1596 <https://github.com/xtensor-stack/xtensor/pull/1596>`_
- Fixed reducer for expression with shape containing 0
`#1595 <https://github.com/xtensor-stack/xtensor/pull/1595>`_
- Very minor spelling checks in comments
`#1591 <https://github.com/xtensor-stack/xtensor/pull/1591>`_
- tests can be built in debug mode
`#1589 <https://github.com/xtensor-stack/xtensor/pull/1589>`_
- strided views constructors forward shape argument
`#1587 <https://github.com/xtensor-stack/xtensor/pull/1587>`_
- Remove unused type alias
`#1585 <https://github.com/xtensor-stack/xtensor/pull/1585>`_
- Fixed reducers with empty list of axes
`#1582 <https://github.com/xtensor-stack/xtensor/pull/1582>`_
- Fix typo in builder docs
`#1581 <https://github.com/xtensor-stack/xtensor/pull/1581>`_
- Fixed return type of data in xstrided_view
`#1580 <https://github.com/xtensor-stack/xtensor/pull/1580>`_
- Fixed reducers on expression with shape containing 1 as first elements
`#1579 <https://github.com/xtensor-stack/xtensor/pull/1579>`_
- Fixed xview::element for range with more elements than view's dimension
`#1578 <https://github.com/xtensor-stack/xtensor/pull/1578>`_
- Fixed broadcasting of shape containing 0-sized dimensions
`#1575 <https://github.com/xtensor-stack/xtensor/pull/1575>`_
- Fixed norm return type for complex
`#1574 <https://github.com/xtensor-stack/xtensor/pull/1574>`_
- Fixed iterator incremented or decremented by 0
`#1572 <https://github.com/xtensor-stack/xtensor/pull/1572>`_
- Added complex exponential test
`#1571 <https://github.com/xtensor-stack/xtensor/pull/1571>`_
- Strided views refactoring
`#1569 <https://github.com/xtensor-stack/xtensor/pull/1569>`_
- Add clang-cl support
`#1559 <https://github.com/xtensor-stack/xtensor/pull/1559>`_
0.20.5
------
- Fixed ``conj``
`#1556 <https://github.com/xtensor-stack/xtensor/pull/1556>`_
- Fixed ``real``, ``imag``, and ``functor_view``
`#1554 <https://github.com/xtensor-stack/xtensor/pull/1554>`_
- Allows to include *xsimd* without defining ``XTENSOR_USE_XSIMD``
`#1548 <https://github.com/xtensor-stack/xtensor/pull/1548>`_
- Fixed ``argsort`` in column major
`#1547 <https://github.com/xtensor-stack/xtensor/pull/1547>`_
- Fixed ``assign_to`` for ``arange`` on ``double``
`#1541 <https://github.com/xtensor-stack/xtensor/pull/1541>`_
- Fix example code in container.rst
`#1544 <https://github.com/xtensor-stack/xtensor/pull/1544>`_
- Removed return value from ``step_leading``
`#1536 <https://github.com/xtensor-stack/xtensor/pull/1536>`_
- Bugfix: amax
`#1533 <https://github.com/xtensor-stack/xtensor/pull/1533>`_
- Removed extra ;
`#1527 <https://github.com/xtensor-stack/xtensor/pull/1527>`_
0.20.4
------
- Buffer adaptor default constructor
`#1524 <https://github.com/xtensor-stack/xtensor/pull/1524>`_
0.20.3
------
- Fix xbuffer adaptor
`#1523 <https://github.com/xtensor-stack/xtensor/pull/1523>`_
0.20.2
------
- Fixed broadcast linear assign
`#1493 <https://github.com/xtensor-stack/xtensor/pull/1493>`_
- Fixed ``do_stirdes_match``
`#1497 <https://github.com/xtensor-stack/xtensor/pull/1497>`_
- Removed unused capture
`#1499 <https://github.com/xtensor-stack/xtensor/pull/1499>`_
- Upgraded to *xtl* 0.6.2
`#1502 <https://github.com/xtensor-stack/xtensor/pull/1502>`_
- Added missing methods in ``xshared_expression``
`#1503 <https://github.com/xtensor-stack/xtensor/pull/1503>`_
- Fixed iterator types of ``xcontainer``
`#1504 <https://github.com/xtensor-stack/xtensor/pull/1504>`_
- Typo correction in external-structure.rst
`#1505 <https://github.com/xtensor-stack/xtensor/pull/1505>`_
- Added extension base to adaptors
`#1507 <https://github.com/xtensor-stack/xtensor/pull/1507>`_
- Fixed shared expression iterator methods
`#1509 <https://github.com/xtensor-stack/xtensor/pull/1509>`_
- Strided view fixes
`#1512 <https://github.com/xtensor-stack/xtensor/pull/1512>`_
- Improved range documentation
`#1515 <https://github.com/xtensor-stack/xtensor/pull/1515>`_
- Fixed ``ravel`` and ``flatten`` implementation
`#1511 <https://github.com/xtensor-stack/xtensor/pull/1511>`_
- Fixed ``xfixed_adaptor`` temporary assign
`#1516 <https://github.com/xtensor-stack/xtensor/pull/1516>`_
- Changed struct -> class in ``xiterator_adaptor``
`#1513 <https://github.com/xtensor-stack/xtensor/pull/1513>`_
- Fxed ``argmax`` for expressions with strides 0
`#1519 <https://github.com/xtensor-stack/xtensor/pull/1519>`_
- Add ``has_linear_assign`` to ``sdynamic_view``
`#1520 <https://github.com/xtensor-stack/xtensor/pull/1520>`_
0.20.1
------
- Add a test for mimetype rendering and fix forward declaration
`#1490 <https://github.com/xtensor-stack/xtensor/pull/1490>`_
- Fix special case of view iteration
`#1491 <https://github.com/xtensor-stack/xtensor/pull/1491>`_
0.20.0
------
Breaking changes
~~~~~~~~~~~~~~~~
- Removed ``xmasked_value`` and ``promote_type_t``
`#1389 <https://github.com/xtensor-stack/xtensor/pull/1389>`_
- Removed deprecated type ``slice_vector``
`#1459 <https://github.com/xtensor-stack/xtensor/pull/1459>`_
- Upgraded to *xtl* 0.6.1
`#1468 <https://github.com/xtensor-stack/xtensor/pull/1465>`_
- Added ``keep_dims`` option to reducers
`#1474 <https://github.com/xtensor-stack/xtensor/pull/1474>`_
- ``do_strides_match`` now accept an addition base stride value
`#1479 <https://github.com/xtensor-stack/xtensor/pull/1479>`_
Other changes
~~~~~~~~~~~~~
- Add ``partition``, ``argpartition`` and ``median``
`#991 <https://github.com/xtensor-stack/xtensor/pull/991>`_
- Fix tets on avx512
`#1410 <https://github.com/xtensor-stack/xtensor/pull/1410>`_
- Implemented ``xcommon_tensor_t`` with tests
`#1412 <https://github.com/xtensor-stack/xtensor/pull/1412>`_
- Code reorganization
`#1416 <https://github.com/xtensor-stack/xtensor/pull/1416>`_
- ``reshape`` now accepts ``initializer_list`` parameter
`#1417 <https://github.com/xtensor-stack/xtensor/pull/1417>`_
- Improved documentation
`#1419 <https://github.com/xtensor-stack/xtensor/pull/1419>`_
- Fixed ``noexcept`` specifier
`#1418 <https://github.com/xtensor-stack/xtensor/pull/1418>`_
- ``view`` now accepts lvalue slices
`#1420 <https://github.com/xtensor-stack/xtensor/pull/1420>`_
- Removed warnings
`#1422 <https://github.com/xtensor-stack/xtensor/pull/1422>`_
- Added ``reshape`` member to ``xgenerator`` to make ``arange`` more flexible
`#1421 <https://github.com/xtensor-stack/xtensor/pull/1421>`_
- Add ``std::decay_t`` to ``shape_type`` in strided view
`#1425 <https://github.com/xtensor-stack/xtensor/pull/1425>`_
- Generic reshape for ``xgenerator``
`#1426 <https://github.com/xtensor-stack/xtensor/pull/1426>`_
- Fix out of bounds accessing in ``xview::compute_strides``
`#1437 <https://github.com/xtensor-stack/xtensor/pull/1437>`_
- Added quick reference section to documentation
`#1438 <https://github.com/xtensor-stack/xtensor/pull/1438>`_
- Improved getting started CMakeLists.txt
`#1440 <https://github.com/xtensor-stack/xtensor/pull/1440>`_
- Added periodic indices
`#1430 <https://github.com/xtensor-stack/xtensor/pull/1430>`_
- Added build section to narrative documentation
`#1442 <https://github.com/xtensor-stack/xtensor/pull/1442>`_
- Fixed ``linspace`` corner case
`#1443 <https://github.com/xtensor-stack/xtensor/pull/1443>`_
- Fixed type-o in documentation
`#1446 <https://github.com/xtensor-stack/xtensor/pull/1446>`_
- Added ``xt::xpad``
`#1441 <https://github.com/xtensor-stack/xtensor/pull/1441>`_
- Added warning in ``resize`` documentation
`#1447 <https://github.com/xtensor-stack/xtensor/pull/1447>`_
- Added ``in_bounds`` method
`#1444 <https://github.com/xtensor-stack/xtensor/pull/1444>`_
- ``xstrided_view_base`` is now a CRTP base class
`#1453 <https://github.com/xtensor-stack/xtensor/pull/1453>`_
- Turned ``xfunctor_applier_base`` into a CRTP base class
`#1455 <https://github.com/xtensor-stack/xtensor/pull/1455>`_
- Removed out of bound access in ``data_offset``
`#1456 <https://github.com/xtensor-stack/xtensor/pull/1456>`_
- Added ``xaccessible`` base class
`#1451 <https://github.com/xtensor-stack/xtensor/pull/1451>`_
- Refactored ``operator[]``
`#1460 <https://github.com/xtensor-stack/xtensor/pull/1460>`_
- Splitted ``xaccessible``
`#1461 <https://github.com/xtensor-stack/xtensor/pull/1461>`_
- Refactored ``size``
`#1462 <https://github.com/xtensor-stack/xtensor/pull/1462>`_
- Implemented ``nanvar`` and ``nanstd`` with tests
`#1424 <https://github.com/xtensor-stack/xtensor/pull/1424>`_
- Removed warnings
`#1463 <https://github.com/xtensor-stack/xtensor/pull/1463>`_
- Added ``periodic`` and ``in_bounds`` method to ``xoptional_assembly_base``
`#1464 <https://github.com/xtensor-stack/xtensor/pull/1464>`_
- Updated documentation according to last changes
`#1465 <https://github.com/xtensor-stack/xtensor/pull/1465>`_
- Fixed ``flatten_sort_result_type``
`#1470 <https://github.com/xtensor-stack/xtensor/pull/1470>`_
- Fixed ``unique`` with expressions not defining ``temporary_type``
`#1472 <https://github.com/xtensor-stack/xtensor/pull/1472>`_
- Fixed ``xstrided_view_base`` constructor
`#1473 <https://github.com/xtensor-stack/xtensor/pull/1473>`_
- Avoid signed integer overflow in integer printer
`#1475 <https://github.com/xtensor-stack/xtensor/pull/1475>`_
- Fixed ``xview::inner_backstrides_type``
`#1480 <https://github.com/xtensor-stack/xtensor/pull/1480>`_
- Fixed compiler warnings
`#1481 <https://github.com/xtensor-stack/xtensor/pull/1481>`_
- ``slice_implementation_getter`` now forwards its lice argument
`#1486 <https://github.com/xtensor-stack/xtensor/pull/1486>`_
- ``linspace`` can now be reshaped
`#1488 <https://github.com/xtensor-stack/xtensor/pull/1488>`_
0.19.4
------
- Add missing include
`#1391 <https://github.com/xtensor-stack/xtensor/pull/1391>`_
- Fixes in xfunctor_view
`#1393 <https://github.com/xtensor-stack/xtensor/pull/1393>`_
- Add tests for xfunctor_view
`#1395 <https://github.com/xtensor-stack/xtensor/pull/1395>`_
- Add `empty` method to fixed_shape
`#1396 <https://github.com/xtensor-stack/xtensor/pull/1396>`_
- Add accessors to slice members
`#1401 <https://github.com/xtensor-stack/xtensor/pull/1401>`_
- Allow adaptors on shared pointers
`#1218 <https://github.com/xtensor-stack/xtensor/pull/1218>`_
- Fix `eye` with negative index
`#1406 <https://github.com/xtensor-stack/xtensor/pull/1406>`_
- Add documentation for shared pointer adaptor
`#1407 <https://github.com/xtensor-stack/xtensor/pull/1407>`_
- Add `nanmean` function
`#1408 <https://github.com/xtensor-stack/xtensor/pull/1408>`_
0.19.3
------
- Fix arange
`#1361 <https://github.com/xtensor-stack/xtensor/pull/1361>`_.
- Adaptors for C stack-allocated arrays
`#1363 <https://github.com/xtensor-stack/xtensor/pull/1363>`_.
- Add support for optionals in ``conditional_ternary``
`#1365 <https://github.com/xtensor-stack/xtensor/pull/1365>`_.
- Add tests for ternary operator on xoptionals
`#1368 <https://github.com/xtensor-stack/xtensor/pull/1368>`_.
- Enable ternary operation for a mix of ``xoptional<value>`` and ``value``
`#1370 <https://github.com/xtensor-stack/xtensor/pull/1370>`_.
- ``reduce`` now accepts a single reduction function
`#1371 <https://github.com/xtensor-stack/xtensor/pull/1371>`_.
- Implemented share method
`#1372 <https://github.com/xtensor-stack/xtensor/pull/1372>`_.
- Documentation of shared improved
`#1373 <https://github.com/xtensor-stack/xtensor/pull/1373>`_.
- ``make_lambda_xfunction`` more generic
`#1374 <https://github.com/xtensor-stack/xtensor/pull/1374>`_.
- minimum/maximum for ``xoptional``
`#1378 <https://github.com/xtensor-stack/xtensor/pull/1378>`_.
- Added missing methods in ``uvector`` and ``svector``
`#1379 <https://github.com/xtensor-stack/xtensor/pull/1379>`_.
- Clip ``xoptional_assembly``
`#1380 <https://github.com/xtensor-stack/xtensor/pull/1380>`_.
- Improve gtest cmake
`#1382 <https://github.com/xtensor-stack/xtensor/pull/1382>`_.
- Implement ternary operator for scalars
`#1385 <https://github.com/xtensor-stack/xtensor/pull/1385>`_.
- Added missing ``at`` method in ``uvector`` and ``svector``
`#1386 <https://github.com/xtensor-stack/xtensor/pull/1386>`_.
- Fixup binder environment
`#1387 <https://github.com/xtensor-stack/xtensor/pull/1387>`_.
- Fixed ``resize`` and ``swap`` of ``svector``
`#1388 <https://github.com/xtensor-stack/xtensor/pull/1388>`_.
0.19.2
------
- Enable CI for C++17
`#1324 <https://github.com/xtensor-stack/xtensor/pull/1324>`_.
- Fix assignment of masked views
`#1328 <https://github.com/xtensor-stack/xtensor/pull/1328>`_.
- Set CMAKE_CXX_STANDARD instead of CMAKE_CXX_FLAGS
`#1330 <https://github.com/xtensor-stack/xtensor/pull/1330>`_.
- Allow specifying traversal order to argmin and argmax
`#1331 <https://github.com/xtensor-stack/xtensor/pull/1331>`_.
- Update section on differences with NumPy
`#1336 <https://github.com/xtensor-stack/xtensor/pull/1336>`_.
- Fix accumulators for shapes containing 1
`#1337 <https://github.com/xtensor-stack/xtensor/pull/1337>`_.
- Decouple XTENSOR_DEFAULT_LAYOUT and XTENSOR_DEFAULT_TRAVERSAL
`#1339 <https://github.com/xtensor-stack/xtensor/pull/1339>`_.
- Prevent embiguity with `xsimd::reduce`
`#1343 <https://github.com/xtensor-stack/xtensor/pull/1343>`_.
- Require *xtl* 0.5.3
`#1346 <https://github.com/xtensor-stack/xtensor/pull/1346>`_.
- Use concepts instead of SFINAE
`#1347 <https://github.com/xtensor-stack/xtensor/pull/1347>`_.
- Document good practice for xtensor-based API design
`#1348 <https://github.com/xtensor-stack/xtensor/pull/1348>`_.
- Fix rich display of tensor expressions
`#1353 <https://github.com/xtensor-stack/xtensor/pull/1353>`_.
- Fix xview on fixed tensor
`#1354 <https://github.com/xtensor-stack/xtensor/pull/1354>`_.
- Fix issue with `keep_slice` in case of `dynamic_view` on `view`
`#1355 <https://github.com/xtensor-stack/xtensor/pull/1355>`_.
- Prevent installation of gtest artifacts
`#1357 <https://github.com/xtensor-stack/xtensor/pull/1357>`_.
0.19.1
------
- Add string specialization to ``lexical_cast``
`#1281 <https://github.com/xtensor-stack/xtensor/pull/1281>`_.
- Added HDF5 reference for ``xtensor-io``
`#1284 <https://github.com/xtensor-stack/xtensor/pull/1284>`_.
- Fixed view index remap issue
`#1288 <https://github.com/xtensor-stack/xtensor/pull/1288>`_.
- Fixed gcc 8.2 deleted functions
`#1289 <https://github.com/xtensor-stack/xtensor/pull/1289>`_.
- Fixed reducer for 0d input
`#1292 <https://github.com/xtensor-stack/xtensor/pull/1292>`_.
- Fixed ``check_element_index``
`#1295 <https://github.com/xtensor-stack/xtensor/pull/1295>`_.
- Added comparison functions
`#1297 <https://github.com/xtensor-stack/xtensor/pull/1297>`_.
- Add some tests to ensure chrono works with xexpressions
`#1272 <https://github.com/xtensor-stack/xtensor/pull/1272>`_.
- Refactor ``functor_view``
`#1276 <https://github.com/xtensor-stack/xtensor/pull/1276>`_.
- Documentation improved
`#1302 <https://github.com/xtensor-stack/xtensor/pull/1302>`_.
- Implementation of shift operators
`#1304 <https://github.com/xtensor-stack/xtensor/pull/1304>`_.
- Make functor adaptor stepper work for proxy specializations
`#1305 <https://github.com/xtensor-stack/xtensor/pull/1305>`_.
- Replaced ``auto&`` with ``auto&&`` in ``assign_to``
`#1306 <https://github.com/xtensor-stack/xtensor/pull/1306>`_.
- Fix namespace in ``xview_utils.hpp``
`#1308 <https://github.com/xtensor-stack/xtensor/pull/1308>`_.
- Introducing ``flatten_indices`` and ``unravel_indices``
`#1300 <https://github.com/xtensor-stack/xtensor/pull/1300>`_.
- Default layout parameter for ``ravel``
`#1311 <https://github.com/xtensor-stack/xtensor/pull/1311>`_.
- Fixed ``xvie_stepper``
`#1317 <https://github.com/xtensor-stack/xtensor/pull/1317>`_.
- Fixed assignment of view on view
`#1314 <https://github.com/xtensor-stack/xtensor/pull/1314>`_.
- Documented indices
`#1318 <https://github.com/xtensor-stack/xtensor/pull/1318>`_.
- Fixed shift operators return type
`#1319 <https://github.com/xtensor-stack/xtensor/pull/1319>`_.
0.19.0
------
Breaking changes
~~~~~~~~~~~~~~~~
- Upgraded to ``xtl 0.5``
`#1275 <https://github.com/xtensor-stack/xtensor/pull/1275>`_.
Other changes
~~~~~~~~~~~~~
- Removed type-o in docs, minor code style consistency update
`#1255 <https://github.com/xtensor-stack/xtensor/pull/1255>`_.
- Removed most of the warnings
`#1261 <https://github.com/xtensor-stack/xtensor/pull/1261>`_.
- Optional bitwise fixed
`#1263 <https://github.com/xtensor-stack/xtensor/pull/1263>`_.
- Prevent macro expansion in ``std::max``
`#1265 <https://github.com/xtensor-stack/xtensor/pull/1265>`_.
- Update numpy.rst
`#1267 <https://github.com/xtensor-stack/xtensor/pull/1267>`_.
- Update getting_started.rst
`#1268 <https://github.com/xtensor-stack/xtensor/pull/1268>`_.
- keep and drop ``step_size`` fixed
`#1270 <https://github.com/xtensor-stack/xtensor/pull/1270>`_.
- Fixed typo in ``xadapt``
`#1277 <https://github.com/xtensor-stack/xtensor/pull/1277>`_.
- Fixed typo
`#1278 <https://github.com/xtensor-stack/xtensor/pull/1278>`_.
0.18.3
------
- Exporting optional dependencies
`#1253 <https://github.com/xtensor-stack/xtensor/pull/1253>`_.
- 0-D HTML rendering
`#1252 <https://github.com/xtensor-stack/xtensor/pull/1252>`_.
- Include nlohmann_json in xio for mime bundle repr
`#1251 <https://github.com/xtensor-stack/xtensor/pull/1251>`_.
- Fixup xview scalar assignment
`#1250 <https://github.com/xtensor-stack/xtensor/pull/1250>`_.
- Implemented `from_indices`
`#1240 <https://github.com/xtensor-stack/xtensor/pull/1240>`_.
- xtensor_forward.hpp cleanup
`#1243 <https://github.com/xtensor-stack/xtensor/pull/1243>`_.
- default layout-type for `unravel_from_strides` and `unravel_index`
`#1239 <https://github.com/xtensor-stack/xtensor/pull/1239>`_.
- xfunction iterator fix
`#1241 <https://github.com/xtensor-stack/xtensor/pull/1241>`_.
- xstepper fixes
`#1237 <https://github.com/xtensor-stack/xtensor/pull/1237>`_.
- print_options io manipulators
`#1231 <https://github.com/xtensor-stack/xtensor/pull/1231>`_.
- Add syntactic sugar for reducer on single axis
`#1228 <https://github.com/xtensor-stack/xtensor/pull/1228>`_.
- Added view vs. adapt benchmark
`#1229 <https://github.com/xtensor-stack/xtensor/pull/1229>`_.
- added precisions to the installation instructions
`#1226 <https://github.com/xtensor-stack/xtensor/pull/1226>`_.
- removed data interface from dynamic view
`#1225 <https://github.com/xtensor-stack/xtensor/pull/1225>`_.
- add xio docs
`#1223 <https://github.com/xtensor-stack/xtensor/pull/1223>`_.
- Fixup xview assignment
`#1216 <https://github.com/xtensor-stack/xtensor/pull/1216>`_.
- documentation updated to be consistent with last changes
`#1214 <https://github.com/xtensor-stack/xtensor/pull/1214>`_.
- prevents macro expansion of std::max
`#1213 <https://github.com/xtensor-stack/xtensor/pull/1213>`_.
- Fix minor typos
`#1212 <https://github.com/xtensor-stack/xtensor/pull/1212>`_.
- Added missing assign operator in xstrided_view
`#1210 <https://github.com/xtensor-stack/xtensor/pull/1210>`_.
- argmax on axis with single element fixed
`#1209 <https://github.com/xtensor-stack/xtensor/pull/1209>`_.
0.18.2
------
- expression tag system fixed
`#1207 <https://github.com/xtensor-stack/xtensor/pull/1207>`_.
- optional extension for generator
`#1206 <https://github.com/xtensor-stack/xtensor/pull/1206>`_.
- optional extension for ``xview``
`#1205 <https://github.com/xtensor-stack/xtensor/pull/1205>`_.
- optional extension for ``xstrided_view``
`#1204 <https://github.com/xtensor-stack/xtensor/pull/1204>`_.
- optional extension for reducer
`#1203 <https://github.com/xtensor-stack/xtensor/pull/1203>`_.
- optional extension for ``xindex_view``
`#1202 <https://github.com/xtensor-stack/xtensor/pull/1202>`_.
- optional extension for ``xfunctor_view``
`#1201 <https://github.com/xtensor-stack/xtensor/pull/1201>`_.
- optional extension for broadcast
`#1198 <https://github.com/xtensor-stack/xtensor/pull/1198>`_.
- extension API and code cleanup
`#1197 <https://github.com/xtensor-stack/xtensor/pull/1197>`_.
- ``xscalar`` optional refactoring
`#1196 <https://github.com/xtensor-stack/xtensor/pull/1196>`_.
- Extension mechanism
`#1192 <https://github.com/xtensor-stack/xtensor/pull/1192>`_.
- Many small fixes
`#1191 <https://github.com/xtensor-stack/xtensor/pull/1191>`_.
- Slight refactoring in ``step_size`` logic
`#1188 <https://github.com/xtensor-stack/xtensor/pull/1188>`_.
- Fixup call of const overload in assembly storage
`#1187 <https://github.com/xtensor-stack/xtensor/pull/1187>`_.
0.18.1
------
- Fixup xio forward declaration
`#1185 <https://github.com/xtensor-stack/xtensor/pull/1185>`_.
0.18.0
------
Breaking changes
~~~~~~~~~~~~~~~~
- Assign and trivial_broadcast refactoring
`#1150 <https://github.com/xtensor-stack/xtensor/pull/1150>`_.
- Moved array manipulation functions (``transpose``, ``ravel``, ``flatten``, ``trim_zeros``, ``squeeze``, ``expand_dims``, ``split``, ``atleast_Nd``, ``atleast_1d``, ``atleast_2d``, ``atleast_3d``, ``flip``) from ``xstrided_view.hpp`` to ``xmanipulation.hpp``
`#1153 <https://github.com/xtensor-stack/xtensor/pull/1153>`_.
- iterator API improved
`#1155 <https://github.com/xtensor-stack/xtensor/pull/1155>`_.
- Fixed ``where`` and ``nonzero`` function behavior to mimic the behavior from NumPy
`#1157 <https://github.com/xtensor-stack/xtensor/pull/1157>`_.
- xsimd and functor refactoring
`#1173 <https://github.com/xtensor-stack/xtensor/pull/1173>`_.
New features
~~~~~~~~~~~~
- Implement ``rot90``
`#1153 <https://github.com/xtensor-stack/xtensor/pull/1153>`_.
- Implement ``argwhere`` and ``flatnonzero``
`#1157 <https://github.com/xtensor-stack/xtensor/pull/1157>`_.
- Implemented ``xexpression_holder``
`#1164 <https://github.com/xtensor-stack/xtensor/pull/1164>`_.
Other changes
~~~~~~~~~~~~~
- Warnings removed
`#1159 <https://github.com/xtensor-stack/xtensor/pull/1159>`_.
- Added missing include
`#1162 <https://github.com/xtensor-stack/xtensor/pull/1162>`_.
- Removed unused type alias in ``xmath/average``
`#1163 <https://github.com/xtensor-stack/xtensor/pull/1163>`_.
- Slices improved
`#1168 <https://github.com/xtensor-stack/xtensor/pull/1168>`_.
- Fixed ``xdrop_slice``
`#1181 <https://github.com/xtensor-stack/xtensor/pull/1181>`_.
0.17.4
------
- perfect forwarding in ``xoptional_function`` constructor
`#1101 <https://github.com/xtensor-stack/xtensor/pull/1101>`_.
- fix issue with ``base_simd``
`#1103 <https://github.com/xtensor-stack/xtensor/pull/1103>`_.
- ``XTENSOR_ASSERT`` fixed on Windows
`#1104 <https://github.com/xtensor-stack/xtensor/pull/1104>`_.
- Implement ``xmasked_value``
`#1032 <https://github.com/xtensor-stack/xtensor/pull/1032>`_.
- Added ``setdiff1d`` using stl interface
`#1109 <https://github.com/xtensor-stack/xtensor/pull/1109>`_.
- Added test case for ``setdiff1d``
`#1110 <https://github.com/xtensor-stack/xtensor/pull/1110>`_.
- Added missing reference to ``diff`` in ``From NumPy to xtensor`` section
`#1116 <https://github.com/xtensor-stack/xtensor/pull/1116>`_.
- Add ``amax`` and ``amin`` to the documentation
`#1121 <https://github.com/xtensor-stack/xtensor/pull/1121>`_.
- ``histogram`` and ``histogram_bin_edges`` implementation
`#1108 <https://github.com/xtensor-stack/xtensor/pull/1108>`_.
- Added NumPy comparison for interp
`#1111 <https://github.com/xtensor-stack/xtensor/pull/1111>`_.
- Allow multiple return type reducer functions
`#1113 <https://github.com/xtensor-stack/xtensor/pull/1113>`_.
- Fixes ``average`` bug + adds NumPy based tests
`#1118 <https://github.com/xtensor-stack/xtensor/pull/1118>`_.
- Static ``xfunction`` cache for fixed sizes
`#1105 <https://github.com/xtensor-stack/xtensor/pull/1105>`_.
- Add negative reshaping axis
`#1120 <https://github.com/xtensor-stack/xtensor/pull/1120>`_.
- Updated ``xmasked_view`` using ``xmasked_value``
`#1074 <https://github.com/xtensor-stack/xtensor/pull/1074>`_.
- Clean documentation for views
`#1131 <https://github.com/xtensor-stack/xtensor/pull/1131>`_.
- Build with *xsimd* on Windows fixed
`#1127 <https://github.com/xtensor-stack/xtensor/pull/1127>`_.
- Implement ``mime_bundle_repr`` for ``xmasked_view``
`#1132 <https://github.com/xtensor-stack/xtensor/pull/1132>`_.
- Modify shuffle to use identical algorithms for any number of dimensions
`#1135 <https://github.com/xtensor-stack/xtensor/pull/1135>`_.
- Warnings removal on windows
`#1139 <https://github.com/xtensor-stack/xtensor/pull/1135>`_.
- Add permutation function to random
`#1141 <https://github.com/xtensor-stack/xtensor/pull/1141>`_.
- ``xfunction_iterator`` permutation
`#933 <https://github.com/xtensor-stack/xtensor/pull/933>`_.
- Add ``bincount`` to ``xhistogram``
`#1140 <https://github.com/xtensor-stack/xtensor/pull/1140>`_.
- Add contiguous iterable base class and remove layout param from storage iterator
`#1057 <https://github.com/xtensor-stack/xtensor/pull/1057>`_.
- Add ``storage_iterator`` to view and strided view
`#1045 <https://github.com/xtensor-stack/xtensor/pull/1045>`_.
- Removes ``data_element`` from ``xoptional``
`#1137 <https://github.com/xtensor-stack/xtensor/pull/1137>`_.
- ``xtensor`` default constructor and scalar assign fixed
`#1148 <https://github.com/xtensor-stack/xtensor/pull/1148>`_.
- Add ``resize / reshape`` to ``xfixed_container``
`#1147 <https://github.com/xtensor-stack/xtensor/pull/1147>`_.
- Iterable refactoring
`#1149 <https://github.com/xtensor-stack/xtensor/pull/1149>`_.
- ``inner_strides_type`` imported in ``xstrided_view``
`#1151 <https://github.com/xtensor-stack/xtensor/pull/1151>`_.
0.17.3
------
- ``xslice`` fix
`#1099 <https://github.com/xtensor-stack/xtensor/pull/1099>`_.
- added missing ``static_layout`` in ``xmasked_view``
`#1100 <https://github.com/xtensor-stack/xtensor/pull/1100>`_.
0.17.2
------
- Add experimental TBB support for parallelized multicore assign
`#948 <https://github.com/xtensor-stack/xtensor/pull/948>`_.
- Add inline statement to all functions in xnpy
`#1097 <https://github.com/xtensor-stack/xtensor/pull/1097>`_.
- Fix strided assign for certain assignments
`#1095 <https://github.com/xtensor-stack/xtensor/pull/1095>`_.
- CMake, remove gtest warnings
`#1085 <https://github.com/xtensor-stack/xtensor/pull/1085>`_.
- Add conversion operators to slices
`#1093 <https://github.com/xtensor-stack/xtensor/pull/1093>`_.
- Add optimization to unchecked accessors when contiguous layout is known
`#1060 <https://github.com/xtensor-stack/xtensor/pull/1060>`_.
- Speedup assign by computing ``any`` layout on vectors
`#1063 <https://github.com/xtensor-stack/xtensor/pull/1063>`_.
- Skip resizing for fixed shapes
`#1072 <https://github.com/xtensor-stack/xtensor/pull/1072>`_.
- Add xsimd apply to xcomplex functors (conj, norm, arg)
`#1086 <https://github.com/xtensor-stack/xtensor/pull/1086>`_.
- Propagate contiguous layout through views
`#1039 <https://github.com/xtensor-stack/xtensor/pull/1039>`_.
- Fix C++17 ambiguity for GCC 7
`#1081 <https://github.com/xtensor-stack/xtensor/pull/1081>`_.
- Correct shape type in argmin, fix svector growth
`#1079 <https://github.com/xtensor-stack/xtensor/pull/1079>`_.
- Add ``interp`` function to xmath
`#1071 <https://github.com/xtensor-stack/xtensor/pull/1071>`_.
- Fix valgrind warnings + memory leak in xadapt
`#1078 <https://github.com/xtensor-stack/xtensor/pull/1078>`_.
- Remove more clang warnings & errors on OS X
`#1077 <https://github.com/xtensor-stack/xtensor/pull/1077>`_.
- Add move constructor from xtensor <-> xarray
`#1051 <https://github.com/xtensor-stack/xtensor/pull/1051>`_.
- Add global support for negative axes in reducers/accumulators
allow multiple axes in average
`#1010 <https://github.com/xtensor-stack/xtensor/pull/1010>`_.
- Fix reference usage in xio
`#1076 <https://github.com/xtensor-stack/xtensor/pull/1076>`_.
- Remove occurences of std::size_t and double
`#1073 <https://github.com/xtensor-stack/xtensor/pull/1073>`_.
- Add missing parantheses around min/max for MSVC
`#1061 <https://github.com/xtensor-stack/xtensor/pull/1061>`_.
0.17.1
------
- Add std namespace to size_t everywhere, remove std::copysign for MSVC
`#1053 <https://github.com/xtensor-stack/xtensor/pull/1053>`_.
- Fix (wrong) bracket warnings for older clang versions (e.g. clang 5 on OS X)
`#1050 <https://github.com/xtensor-stack/xtensor/pull/1050>`_.
- Fix strided view on view by using std::addressof
`#1049 <https://github.com/xtensor-stack/xtensor/pull/1049>`_.
- Add more adapt functions and shorthands
`#1043 <https://github.com/xtensor-stack/xtensor/pull/1043>`_.
- Improve CRTP base class detection
`#1041 <https://github.com/xtensor-stack/xtensor/pull/1041>`_.
- Fix rebind container ambiguous template for C++17 / GCC 8 regression
`#1038 <https://github.com/xtensor-stack/xtensor/pull/1038>`_.
- Fix functor return value
`#1035 <https://github.com/xtensor-stack/xtensor/pull/1035>`_.
0.17.0
------
Breaking changes
~~~~~~~~~~~~~~~~
- Changed strides to ``std::ptrdiff_t``
`#925 <https://github.com/xtensor-stack/xtensor/pull/925>`_.
- Renamed ``count_nonzeros`` in ``count_nonzero``
`#974 <https://github.com/xtensor-stack/xtensor/pull/974>`_.
- homogenize ``xfixed`` constructors
`#970 <https://github.com/xtensor-stack/xtensor/pull/970>`_.
- Improve ``random::choice``
`#1011 <https://github.com/xtensor-stack/xtensor/pull/1011>`_.
New features
~~~~~~~~~~~~
- add ``signed char`` to npy deserialization format
`#1017 <https://github.com/xtensor-stack/xtensor/pull/1017>`_.
- simd assignment now requires convertible types instead of same type
`#1000 <https://github.com/xtensor-stack/xtensor/pull/1000>`_.
- shared expression and automatic xclosure detection
`#992 <https://github.com/xtensor-stack/xtensor/pull/992>`_.
- average function
`#987 <https://github.com/xtensor-stack/xtensor/pull/987>`_.
- added simd support for complex
`#985 <https://github.com/xtensor-stack/xtensor/pull/985>`_.
- argsort function
`#977 <https://github.com/xtensor-stack/xtensor/pull/977>`_.
- propagate fixed shape
`#922 <https://github.com/xtensor-stack/xtensor/pull/922>`_.
- added xdrop_slice
`#972 <https://github.com/xtensor-stack/xtensor/pull/972>`_.
- added doc for ``xmasked_view``
`#971 <https://github.com/xtensor-stack/xtensor/pull/971>`_.
- added ``xmasked_view``
`#969 <https://github.com/xtensor-stack/xtensor/pull/969>`_.
- added ``dynamic_view``
`#966 <https://github.com/xtensor-stack/xtensor/pull/966>`_.
- added ability to use negative indices in keep slice
`#964 <https://github.com/xtensor-stack/xtensor/pull/964>`_.
- added an easy way to create lambda expressions, square and cube
`#961 <https://github.com/xtensor-stack/xtensor/pull/961>`_.
- noalias on rvalue
`#965 <https://github.com/xtensor-stack/xtensor/pull/965>`_.
Other changes
~~~~~~~~~~~~~
- ``xshared_expression`` fixed
`#1025 <https://github.com/xtensor-stack/xtensor/pull/1025>`_.
- fix ``make_xshared``
`#1024 <https://github.com/xtensor-stack/xtensor/pull/1024>`_.
- add tests to evaluate shared expressions
`#1019 <https://github.com/xtensor-stack/xtensor/pull/1019>`_.
- fix ``where`` on ``xview``
`#1012 <https://github.com/xtensor-stack/xtensor/pull/1012>`_.
- basic usage replaced with getting started
`#1004 <https://github.com/xtensor-stack/xtensor/pull/1004>`_.
- avoided installation failure in absence of ``nlohmann_json``
`#1001 <https://github.com/xtensor-stack/xtensor/pull/1001>`_.
- code and documentation clean up
`#998 <https://github.com/xtensor-stack/xtensor/pull/998>`_.
- removed g++ "pedantic" compiler warnings
`#997 <https://github.com/xtensor-stack/xtensor/pull/997>`_.
- added missing header in basic_usage.rst
`#996 <https://github.com/xtensor-stack/xtensor/pull/996>`_.
- warning pass
`#990 <https://github.com/xtensor-stack/xtensor/pull/990>`_.
- added missing include in ``xview``
`#989 <https://github.com/xtensor-stack/xtensor/pull/989>`_.
- added missing ``<map>`` include
`#983 <https://github.com/xtensor-stack/xtensor/pull/983>`_.
- xislice refactoring
`#962 <https://github.com/xtensor-stack/xtensor/pull/962>`_.
- added missing operators to noalias
`#932 <https://github.com/xtensor-stack/xtensor/pull/932>`_.
- cmake fix for Intel compiler on Windows
`#951 <https://github.com/xtensor-stack/xtensor/pull/951>`_.
- fixed xsimd abs deduction
`#946 <https://github.com/xtensor-stack/xtensor/pull/946>`_.
- added islice example to view doc
`#940 <https://github.com/xtensor-stack/xtensor/pull/940>`_.
0.16.4
------
- removed usage of ``std::transfomr`` in assign
`#868 <https://github.com/xtensor-stack/xtensor/pull/868>`_.
- add strided assignment
`#901 <https://github.com/xtensor-stack/xtensor/pull/901>`_.
- simd activated for conditional ternary functor
`#903 <https://github.com/xtensor-stack/xtensor/pull/903>`_.
- ``xstrided_view`` split
`#905 <https://github.com/xtensor-stack/xtensor/pull/905>`_.
- assigning an expression to a view throws if it has more dimensions
`#910 <https://github.com/xtensor-stack/xtensor/pull/910>`_.
- faster random
`#913 <https://github.com/xtensor-stack/xtensor/pull/913>`_.
- ``xoptional_assembly_base`` storage type
`#915 <https://github.com/xtensor-stack/xtensor/pull/915>`_.
- new tests and warning pass
`#916 <https://github.com/xtensor-stack/xtensor/pull/916>`_.
- norm immediate reducer
`#924 <https://github.com/xtensor-stack/xtensor/pull/924>`_.
- add ``reshape_view``
`#927 <https://github.com/xtensor-stack/xtensor/pull/927>`_.
- fix immediate reducers with 0 strides
`#935 <https://github.com/xtensor-stack/xtensor/pull/935>`_.
0.16.3
------
- simd on mathematical functions fixed
`#886 <https://github.com/xtensor-stack/xtensor/pull/886>`_.
- ``fill`` method added to containers
`#887 <https://github.com/xtensor-stack/xtensor/pull/887>`_.
- access with more arguments than dimensions
`#889 <https://github.com/xtensor-stack/xtensor/pull/889>`_.
- unchecked method implemented
`#890 <https://github.com/xtensor-stack/xtensor/pull/890>`_.
- ``fill`` method implemented in view
`#893 <https://github.com/xtensor-stack/xtensor/pull/893>`_.
- documentation fixed and warnings removed
`#894 <https://github.com/xtensor-stack/xtensor/pull/894>`_.
- negative slices and new range syntax
`#895 <https://github.com/xtensor-stack/xtensor/pull/895>`_.
- ``xview_stepper`` with implicit ``xt::all`` bug fix
`#899 <https://github.com/xtensor-stack/xtensor/pull/899>`_.
0.16.2
------
- Add include of ``xview.hpp`` in example
`#884 <https://github.com/xtensor-stack/xtensor/pull/884>`_.
- Remove ``FS`` identifier
`#885 <https://github.com/xtensor-stack/xtensor/pull/885>`_.
0.16.1
------
- Workaround for Visual Studio Bug
`#858 <https://github.com/xtensor-stack/xtensor/pull/858>`_.
- Fixup example notebook
`#861 <https://github.com/xtensor-stack/xtensor/pull/861>`_.
- Prevent expansion of min and max macros on Windows
`#863 <https://github.com/xtensor-stack/xtensor/pull/863>`_.
- Renamed ``m_data`` to ``m_storage``
`#864 <https://github.com/xtensor-stack/xtensor/pull/864>`_.
- Fix regression with respect to random access stepping with views
`#865 <https://github.com/xtensor-stack/xtensor/pull/865>`_.
- Remove use of CS, DS and ES qualifiers for Solaris builds
`#866 <https://github.com/xtensor-stack/xtensor/pull/866>`_.
- Removal of precision type
`#870 <https://github.com/xtensor-stack/xtensor/pull/870>`_.
- Make json tests optional, bump xtl/xsimd versions
`#871 <https://github.com/xtensor-stack/xtensor/pull/871>`_.
- Add more benchmarks
`#876 <https://github.com/xtensor-stack/xtensor/pull/876>`_.
- Forbid simd fixed
`#877 <https://github.com/xtensor-stack/xtensor/pull/877>`_.
- Add more asserts
`#879 <https://github.com/xtensor-stack/xtensor/pull/879>`_.
- Add missing ``batch_bool`` typedef
`#881 <https://github.com/xtensor-stack/xtensor/pull/881>`_.
- ``simd_return_type`` hack removed
`#882 <https://github.com/xtensor-stack/xtensor/pull/882>`_.
- Removed test guard and fixed dimension check in ``xscalar``
`#883 <https://github.com/xtensor-stack/xtensor/pull/883>`_.
0.16.0
------
Breaking changes
~~~~~~~~~~~~~~~~
- ``data`` renamed in ``storage``, ``raw_data`` renamed in ``data``
`#792 <https://github.com/xtensor-stack/xtensor/pull/792>`_.
- Added layout template parameter to ``xstrided_view``
`#796 <https://github.com/xtensor-stack/xtensor/pull/796>`_.
- Remove equality operator from stepper
`#824 <https://github.com/xtensor-stack/xtensor/pull/824>`_.
- ``dynamic_view`` renamed in ``strided_view``
`#832 <https://github.com/xtensor-stack/xtensor/pull/832>`_.
- ``xtensorf`` renamed in ``xtensor_fixed``
`#846 <https://github.com/xtensor-stack/xtensor/pull/846>`_.
New features
~~~~~~~~~~~~
- Added strided view selector
`#765 <https://github.com/xtensor-stack/xtensor/pull/765>`_.
- Added ``count_nonzeros``
`#781 <https://github.com/xtensor-stack/xtensor/pull/781>`_.
- Added implicit conversion to scalar in ``xview``
`#788 <https://github.com/xtensor-stack/xtensor/pull/788>`_.
- Added tracking allocators to ``xutils.hpp``
`#789 <https://github.com/xtensor-stack/xtensor/pull/789>`_.
- ``xindexslice`` and ``shuffle`` function
`#804 <https://github.com/xtensor-stack/xtensor/pull/804>`_.
- Allow ``xadapt`` with dynamic layout
`#816 <https://github.com/xtensor-stack/xtensor/pull/816>`_.
- Added ``xtensorf`` initialization from C array
`#819 <https://github.com/xtensor-stack/xtensor/pull/819>`_.
- Added policy to allocation tracking for throw option
`#820 <https://github.com/xtensor-stack/xtensor/pull/820>`_.
- Free function ``empty`` for construction from shape
`#827 <https://github.com/xtensor-stack/xtensor/pull/827>`_.
- Support for JSON serialization and deserialization of xtensor expressions
`#830 <https://github.com/xtensor-stack/xtensor/pull/830>`_.
- Add ``trapz`` function
`#837 <https://github.com/xtensor-stack/xtensor/pull/837>`_.
- Add ``diff`` and ``trapz(y, x)`` functions
`#841 <https://github.com/xtensor-stack/xtensor/pull/841>`_.
Other changes
~~~~~~~~~~~~~
- Added fast path for specific assigns
`#767 <https://github.com/xtensor-stack/xtensor/pull/767>`_.
- Renamed internal macros to prevent collisions
`#772 <https://github.com/xtensor-stack/xtensor/pull/772>`_.
- ``dynamic_view`` unwrapping
`#775 <https://github.com/xtensor-stack/xtensor/pull/775>`_.
- ``xreducer_stepper`` copy semantic fixed
`#785 <https://github.com/xtensor-stack/xtensor/pull/785>`_.
- ``xfunction`` copy constructor fixed
`#787 <https://github.com/xtensor-stack/xtensor/pull/787>`_.
- warnings removed
`#791 <https://github.com/xtensor-stack/xtensor/pull/791>`_.
- ``xscalar_stepper`` fixed
`#802 <https://github.com/xtensor-stack/xtensor/pull/802>`_.
- Fixup ``xadapt`` on const pointers
`#809 <https://github.com/xtensor-stack/xtensor/pull/809>`_.
- Fix in owning buffer adaptors
`#810 <https://github.com/xtensor-stack/xtensor/pull/810>`_.
- Macros fixup
`#812 <https://github.com/xtensor-stack/xtensor/pull/812>`_.
- More fixes in ``xadapt``
`#813 <https://github.com/xtensor-stack/xtensor/pull/813>`_.
- Mute unused variable warning
`#815 <https://github.com/xtensor-stack/xtensor/pull/815>`_.
- Remove comparison of steppers in assign loop
`#823 <https://github.com/xtensor-stack/xtensor/pull/823>`_.
- Fix reverse iterators
`#825 <https://github.com/xtensor-stack/xtensor/pull/825>`_.
- gcc-8 fix for template method calls
`#833 <https://github.com/xtensor-stack/xtensor/pull/833>`_.
- refactor benchmarks for upcoming release
`#842 <https://github.com/xtensor-stack/xtensor/pull/842>`_.
- ``flip`` now returns a view
`#843 <https://github.com/xtensor-stack/xtensor/pull/843>`_.
- initial warning pass
`#850 <https://github.com/xtensor-stack/xtensor/pull/850>`_.
- Fix warning on diff function
`#851 <https://github.com/xtensor-stack/xtensor/pull/851>`_.
- xsimd assignment fixed
`#852 <https://github.com/xtensor-stack/xtensor/pull/852>`_.
0.15.9
------
- missing layout method in xfixed
`#777 <https://github.com/xtensor-stack/xtensor/pull/777>`_.
- fixed uninitialized backstrides
`#774 <https://github.com/xtensor-stack/xtensor/pull/774>`_.
- update xtensor-blas in binder
`#773 <https://github.com/xtensor-stack/xtensor/pull/773>`_.
0.15.8
------
- comparison operators for slices
`#770 <https://github.com/xtensor-stack/xtensor/pull/770>`_.
- use default-assignable layout for strided views.
`#769 <https://github.com/xtensor-stack/xtensor/pull/769>`_.
0.15.7
------
- nan related functions
`#718 <https://github.com/xtensor-stack/xtensor/pull/718>`_.
- return types fixed in dynamic view helper
`#722 <https://github.com/xtensor-stack/xtensor/pull/722>`_.
- xview on constant expressions
`#723 <https://github.com/xtensor-stack/xtensor/pull/723>`_.
- added decays to make const ``value_type`` compile
`#727 <https://github.com/xtensor-stack/xtensor/pull/727>`_.
- iterator for constant ``strided_view`` fixed
`#729 <https://github.com/xtensor-stack/xtensor/pull/729>`_.
- ``strided_view`` on ``xfunction`` fixed
`#732 <https://github.com/xtensor-stack/xtensor/pull/732>`_.
- Fixes in ``xstrided_view``
`#736 <https://github.com/xtensor-stack/xtensor/pull/736>`_.
- View semantic (broadcast on assign) fixed
`#742 <https://github.com/xtensor-stack/xtensor/pull/742>`_.
- Compilation prevented when using ellipsis with ``xview``
`#743 <https://github.com/xtensor-stack/xtensor/pull/743>`_.
- Index of ``xiterator`` set to shape when reaching the end
`#744 <https://github.com/xtensor-stack/xtensor/pull/744>`_.
- ``xscalar`` fixed
`#748 <https://github.com/xtensor-stack/xtensor/pull/748>`_.
- Updated README and related projects
`#749 <https://github.com/xtensor-stack/xtensor/pull/749>`_.
- Perfect forwarding in ``xfunction`` and views
`#750 <https://github.com/xtensor-stack/xtensor/pull/750>`_.
- Missing include in ``xassign.hpp``
`#752 <https://github.com/xtensor-stack/xtensor/pull/752>`_.
- More related projects in the README
`#754 <https://github.com/xtensor-stack/xtensor/pull/754>`_.
- Fixed stride computation for ``xtensorf``
`#755 <https://github.com/xtensor-stack/xtensor/pull/755>`_.
- Added tests for backstrides
`#758 <https://github.com/xtensor-stack/xtensor/pull/758>`_.
- Clean up ``has_raw_data`` ins strided view
`#759 <https://github.com/xtensor-stack/xtensor/pull/759>`_.
- Switch to ``ptrdiff_t`` for slices
`#760 <https://github.com/xtensor-stack/xtensor/pull/760>`_.
- Fixed ``xview`` strides computation
`#762 <https://github.com/xtensor-stack/xtensor/pull/762>`_.
- Additional methods in slices, required for ``xframe``
`#764 <https://github.com/xtensor-stack/xtensor/pull/764>`_.
0.15.6
------
- zeros, ones, full and empty_like functions
`#686 <https://github.com/xtensor-stack/xtensor/pull/686>`_.
- squeeze view
`#687 <https://github.com/xtensor-stack/xtensor/pull/687>`_.
- bitwise shift left and shift right
`#688 <https://github.com/xtensor-stack/xtensor/pull/688>`_.
- ellipsis, unique and trim functions
`#689 <https://github.com/xtensor-stack/xtensor/pull/689>`_.
- xview iterator benchmark
`#696 <https://github.com/xtensor-stack/xtensor/pull/696>`_.
- optimize stepper increment
`#697 <https://github.com/xtensor-stack/xtensor/pull/697>`_.
- minmax reducers
`#698 <https://github.com/xtensor-stack/xtensor/pull/698>`_.
- where fix with SIMD
`#704 <https://github.com/xtensor-stack/xtensor/pull/704>`_.
- additional doc for scalars and views
`#705 <https://github.com/xtensor-stack/xtensor/pull/705>`_.
- mixed arithmetic with SIMD
`#713 <https://github.com/xtensor-stack/xtensor/pull/713>`_.
- broadcast fixed
`#717 <https://github.com/xtensor-stack/xtensor/pull/717>`_.
0.15.5
------
- assign functions optimized
`#650 <https://github.com/xtensor-stack/xtensor/pull/650>`_.
- transposed view fixed
`#652 <https://github.com/xtensor-stack/xtensor/pull/652>`_.
- exceptions refactoring
`#654 <https://github.com/xtensor-stack/xtensor/pull/654>`_.
- performances improved
`#655 <https://github.com/xtensor-stack/xtensor/pull/655>`_.
- view data accessor fixed
`#660 <https://github.com/xtensor-stack/xtensor/pull/660>`_.
- new dynamic view using variant
`#656 <https://github.com/xtensor-stack/xtensor/pull/656>`_.
- alignment added to fixed xtensor
`#659 <https://github.com/xtensor-stack/xtensor/pull/659>`_.
- code cleanup
`#664 <https://github.com/xtensor-stack/xtensor/pull/664>`_.
- xtensorf and new dynamic view documentation
`#667 <https://github.com/xtensor-stack/xtensor/pull/667>`_.
- qualify namespace for compute_size
`#665 <https://github.com/xtensor-stack/xtensor/pull/665>`_.
- make xio use ``dynamic_view`` instead of ``view``
`#662 <https://github.com/xtensor-stack/xtensor/pull/662>`_.
- transposed view on any expression
`#671 <https://github.com/xtensor-stack/xtensor/pull/671>`_.
- docs typos and grammar plus formatting
`#676 <https://github.com/xtensor-stack/xtensor/pull/676>`_.
- index view test assertion fixed
`#680 <https://github.com/xtensor-stack/xtensor/pull/680>`_.
- flatten view
`#678 <https://github.com/xtensor-stack/xtensor/pull/678>`_.
- handle the case of pointers to const element in ``xadapt``
`#679 <https://github.com/xtensor-stack/xtensor/pull/679>`_.
- use quotes in #include statements for xtl
`#681 <https://github.com/xtensor-stack/xtensor/pull/681>`_.
- additional constructors for ``svector``
`#682 <https://github.com/xtensor-stack/xtensor/pull/682>`_.
- removed ``test_xsemantics.hpp`` from test CMakeLists
`#684 <https://github.com/xtensor-stack/xtensor/pull/684>`_.
0.15.4
------
- fix gcc-7 error w.r.t. the use of ``assert``
`#648 <https://github.com/xtensor-stack/xtensor/pull/648>`_.
0.15.3
------
- add missing headers to cmake installation and tests
`#647 <https://github.com/xtensor-stack/xtensor/pull/647>`_.
0.15.2
------
- ``xshape`` implementation
`#572 <https://github.com/xtensor-stack/xtensor/pull/572>`_.
- xfixed container
`#586 <https://github.com/xtensor-stack/xtensor/pull/586>`_.
- protected ``xcontainer::derived_cast``
`#627 <https://github.com/xtensor-stack/xtensor/pull/627>`_.
- const reference fix
`#632 <https://github.com/xtensor-stack/xtensor/pull/632>`_.
- ``xgenerator`` access operators fixed
`#643 <https://github.com/xtensor-stack/xtensor/pull/643>`_.
- contiguous layout optiimzation
`#645 <https://github.com/xtensor-stack/xtensor/pull/645>`_.
0.15.1
------
- ``xarray_adaptor`` fixed
`#618 <https://github.com/xtensor-stack/xtensor/pull/618>`_.
- ``xtensor_adaptor`` fixed
`#620 <https://github.com/xtensor-stack/xtensor/pull/620>`_.
- fix in ``xreducer`` steppers
`#622 <https://github.com/xtensor-stack/xtensor/pull/622>`_.
- documentation improved
`#621 <https://github.com/xtensor-stack/xtensor/pull/621>`_.
`#623 <https://github.com/xtensor-stack/xtensor/pull/623>`_.
`#625 <https://github.com/xtensor-stack/xtensor/pull/625>`_.
- warnings removed
`#624 <https://github.com/xtensor-stack/xtensor/pull/624>`_.
0.15.0
------
Breaking changes
~~~~~~~~~~~~~~~~
- change ``reshape`` to ``resize``, and add throwing ``reshape``
`#598 <https://github.com/xtensor-stack/xtensor/pull/598>`_.
- moved to modern cmake
`#611 <https://github.com/xtensor-stack/xtensor/pull/611>`_.
New features
~~~~~~~~~~~~
- unravel function
`#589 <https://github.com/xtensor-stack/xtensor/pull/589>`_.
- random access iterators
`#596 <https://github.com/xtensor-stack/xtensor/pull/596>`_.
Other changes
~~~~~~~~~~~~~
- upgraded to google/benchmark version 1.3.0
`#583 <https://github.com/xtensor-stack/xtensor/pull/583>`_.
- ``XTENSOR_ASSERT`` renamed into ``XTENSOR_TRY``, new ``XTENSOR_ASSERT``
`#603 <https://github.com/xtensor-stack/xtensor/pull/603>`_.
- ``adapt`` fixed
`#604 <https://github.com/xtensor-stack/xtensor/pull/604>`_.
- VC14 warnings removed
`#608 <https://github.com/xtensor-stack/xtensor/pull/608>`_.
- ``xfunctor_iterator`` is now a random access iterator
`#609 <https://github.com/xtensor-stack/xtensor/pull/609>`_.
- removed ``old-style-cast`` warnings
`#610 <https://github.com/xtensor-stack/xtensor/pull/610>`_.
0.14.1
------
New features
~~~~~~~~~~~~
- sort, argmin and argmax
`#549 <https://github.com/xtensor-stack/xtensor/pull/549>`_.
- ``xscalar_expression_tag``
`#582 <https://github.com/xtensor-stack/xtensor/pull/582>`_.
Other changes
~~~~~~~~~~~~~
- accumulator improvements
`#570 <https://github.com/xtensor-stack/xtensor/pull/570>`_.
- benchmark cmake fixed
`#571 <https://github.com/xtensor-stack/xtensor/pull/571>`_.
- allocator_type added to container interface
`#573 <https://github.com/xtensor-stack/xtensor/pull/573>`_.
- allow conda-forge as fallback channel
`#575 <https://github.com/xtensor-stack/xtensor/pull/575>`_.
- arithmetic mixing optional assemblies and scalars fixed
`#578 <https://github.com/xtensor-stack/xtensor/pull/578>`_.
- arithmetic mixing optional assemblies and optionals fixed
`#579 <https://github.com/xtensor-stack/xtensor/pull/579>`_.
- ``operator==`` restricted to xtensor and xoptional expressions
`#580 <https://github.com/xtensor-stack/xtensor/pull/580>`_.
0.14.0
------
Breaking changes
~~~~~~~~~~~~~~~~
- ``xadapt`` renamed into ``adapt``
`#563 <https://github.com/xtensor-stack/xtensor/pull/563>`_.
- Naming consistency
`#565 <https://github.com/xtensor-stack/xtensor/pull/565>`_.
New features
~~~~~~~~~~~~
- add ``random::choice``
`#547 <https://github.com/xtensor-stack/xtensor/pull/547>`_.
- evaluation strategy and accumulators.
`#550 <https://github.com/xtensor-stack/xtensor/pull/550>`_.
- modulus operator
`#556 <https://github.com/xtensor-stack/xtensor/pull/556>`_.
- ``adapt``: default overload for 1D arrays
`#560 <https://github.com/xtensor-stack/xtensor/pull/560>`_.
- Move semantic on ``adapt``
`#564 <https://github.com/xtensor-stack/xtensor/pull/564>`_.
Other changes
~~~~~~~~~~~~~
- optional fixes to avoid ambiguous calls
`#541 <https://github.com/xtensor-stack/xtensor/pull/541>`_.
- narrative documentation about ``xt::adapt``
`#544 <https://github.com/xtensor-stack/xtensor/pull/544>`_.
- ``xfunction`` refactoring
`#545 <https://github.com/xtensor-stack/xtensor/pull/545>`_.
- SIMD acceleration for AVX fixed
`#557 <https://github.com/xtensor-stack/xtensor/pull/557>`_.
- allocator fixes
`#558 <https://github.com/xtensor-stack/xtensor/pull/558>`_.
`#559 <https://github.com/xtensor-stack/xtensor/pull/559>`_.
- return type of ``view::strides()`` fixed
`#568 <https://github.com/xtensor-stack/xtensor/pull/568>`_.
0.13.2
------
- Support for complex version of ``isclose``
`#512 <https://github.com/xtensor-stack/xtensor/pull/512>`_.
- Fixup static layout in ``xstrided_view``
`#536 <https://github.com/xtensor-stack/xtensor/pull/536>`_.
- ``xexpression::operator[]`` now take support any type of sequence
`#537 <https://github.com/xtensor-stack/xtensor/pull/537>`_.
- Fixing ``xinfo`` issues for Visual Studio.
`#529 <https://github.com/xtensor-stack/xtensor/pull/529>`_.
- Fix const-correctness in ``xstrided_view``.
`#526 <https://github.com/xtensor-stack/xtensor/pull/526>`_.
0.13.1
------
- More general floating point type
`#518 <https://github.com/xtensor-stack/xtensor/pull/518>`_.
- Do not require functor to be passed via rvalue reference
`#519 <https://github.com/xtensor-stack/xtensor/pull/519>`_.
- Documentation improved
`#520 <https://github.com/xtensor-stack/xtensor/pull/520>`_.
- Fix in xreducer
`#521 <https://github.com/xtensor-stack/xtensor/pull/521>`_.
0.13.0
------
Breaking changes
~~~~~~~~~~~~~~~~
- The API for ``xbuffer_adaptor`` has changed. The template parameter is the type of the buffer, not just the value type
`#482 <https://github.com/xtensor-stack/xtensor/pull/482>`_.
- Change ``edge_items`` print option to ``edgeitems`` for better NumPy consistency
`#489 <https://github.com/xtensor-stack/xtensor/pull/489>`_.
- *xtensor* now depends on *xtl* version `~0.3.3`
`#508 <https://github.com/xtensor-stack/xtensor/pull/508>`_.
New features
~~~~~~~~~~~~
- Support for parsing the ``npy`` file format
`#465 <https://github.com/xtensor-stack/xtensor/pull/465>`_.
- Creation of optional expressions from value and boolean expressions (optional assembly)
`#496 <https://github.com/xtensor-stack/xtensor/pull/496>`_.
- Support for the explicit cast of expressions with different value types
`#491 <https://github.com/xtensor-stack/xtensor/pull/491>`_.
Other changes
~~~~~~~~~~~~~
- Addition of broadcasting bitwise operators
`#459 <https://github.com/xtensor-stack/xtensor/pull/459>`_.
- More efficient optional expression system
`#467 <https://github.com/xtensor-stack/xtensor/pull/467>`_.
- Migration of benchmarks to the Google benchmark framework
`#473 <https://github.com/xtensor-stack/xtensor/pull/473>`_.
- Container semantic and adaptor semantic merged
`#475 <https://github.com/xtensor-stack/xtensor/pull/475>`_.
- Various fixes and improvements of the strided views
`#480 <https://github.com/xtensor-stack/xtensor/pull/480>`_.
`#481 <https://github.com/xtensor-stack/xtensor/pull/481>`_.
- Assignment now performs basic type conversion
`#486 <https://github.com/xtensor-stack/xtensor/pull/486>`_.
- Workaround for a compiler bug in Visual Studio 2017
`#490 <https://github.com/xtensor-stack/xtensor/pull/490>`_.
- MSVC 2017 workaround
`#492 <https://github.com/xtensor-stack/xtensor/pull/492>`_.
- The ``size()`` method for containers now returns the total number of elements instead of the buffer size, which may differ when the smallest stride is greater than ``1``
`#502 <https://github.com/xtensor-stack/xtensor/pull/502>`_.
- The behavior of ``linspace`` with integral types has been made consistent with NumPy
`#510 <https://github.com/xtensor-stack/xtensor/pull/510>`_.
0.12.1
------
- Fix issue with slicing when using heterogeneous integral types
`#451 <https://github.com/xtensor-stack/xtensor/pull/451>`_.
0.12.0
------
Breaking changes
~~~~~~~~~~~~~~~~
- *xtensor* now depends on *xtl* version `0.2.x`
`#421 <https://github.com/xtensor-stack/xtensor/pull/421>`_.
New features
~~~~~~~~~~~~
- *xtensor* has an optional dependency on *xsimd* for enabling simd acceleration
`#426 <https://github.com/xtensor-stack/xtensor/pull/426>`_.
- All expressions have an additional safe access function (``at``)
`#420 <https://github.com/xtensor-stack/xtensor/pull/420>`_.
- norm functions
`#440 <https://github.com/xtensor-stack/xtensor/pull/440>`_.
- ``closure_pointer`` used in iterators returning temporaries so their ``operator->`` can be
correctly defined
`#446 <https://github.com/xtensor-stack/xtensor/pull/446>`_.
- expressions tags added so *xtensor* expression system can be extended
`#447 <https://github.com/xtensor-stack/xtensor/pull/447>`_.
Other changes
~~~~~~~~~~~~~
- Preconditions and exceptions
`#409 <https://github.com/xtensor-stack/xtensor/pull/409>`_.
- ``isclose`` is now symmetric
`#411 <https://github.com/xtensor-stack/xtensor/pull/411>`_.
- concepts added
`#414 <https://github.com/xtensor-stack/xtensor/pull/414>`_.
- narrowing cast for mixed arithmetic
`#432 <https://github.com/xtensor-stack/xtensor/pull/432>`_.
- ``is_xexpression`` concept fixed
`#439 <https://github.com/xtensor-stack/xtensor/pull/439>`_.
- ``void_t`` implementation fixed for compilers affected by C++14 defect CWG 1558
`#448 <https://github.com/xtensor-stack/xtensor/pull/448>`_.
0.11.3
------
- Fixed bug in length-1 statically dimensioned tensor construction
`#431 <https://github.com/xtensor-stack/xtensor/pull/431>`_.
0.11.2
------
- Fixup compilation issue with latest clang compiler. (missing `constexpr` keyword)
`#407 <https://github.com/xtensor-stack/xtensor/pull/407>`_.
0.11.1
------
- Fixes some warnings in julia and python bindings
0.11.0
------
Breaking changes
~~~~~~~~~~~~~~~~
- ``xbegin`` / ``xend``, ``xcbegin`` / ``xcend``, ``xrbegin`` / ``xrend`` and ``xcrbegin`` / ``xcrend`` methods replaced
with classical ``begin`` / ``end``, ``cbegin`` / ``cend``, ``rbegin`` / ``rend`` and ``crbegin`` / ``crend`` methods.
Old ``begin`` / ``end`` methods and their variants have been removed.
`#370 <https://github.com/xtensor-stack/xtensor/pull/370>`_.
- ``xview`` now uses a const stepper when its underlying expression is const.
`#385 <https://github.com/xtensor-stack/xtensor/pull/385>`_.
Other changes
~~~~~~~~~~~~~
- ``xview`` copy semantic and move semantic fixed.
`#377 <https://github.com/xtensor-stack/xtensor/pull/377>`_.
- ``xoptional`` can be implicitly constructed from a scalar.
`#382 <https://github.com/xtensor-stack/xtensor/pull/382>`_.
- build with Emscripten fixed.
`#388 <https://github.com/xtensor-stack/xtensor/pull/388>`_.
- STL version detection improved.
`#396 <https://github.com/xtensor-stack/xtensor/pull/396>`_.
- Implicit conversion between signed and unsigned integers fixed.
`#397 <https://github.com/xtensor-stack/xtensor/pull/397>`_.
|