ruby-prof 2.0.2-x64-mingw-ucrt → 2.0.3-x64-mingw-ucrt

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eb9987a3ec4c0e448edf3e4e90c826e5f6f4fed3121f732f480711fb83aee224
4
- data.tar.gz: 0a1d31dae1d1304942d065e1e6af1abee9bc57f0f9888b0298d69b3416f68938
3
+ metadata.gz: d4892e325c81957ac827f8a41ebe5e94db0ee18f922e395003ddf720121ffd37
4
+ data.tar.gz: f17d0858e3cb8a09c52041177faba404c48f31dc360bc8db8864e662b8849a01
5
5
  SHA512:
6
- metadata.gz: 7ba63c43ed6bbbcc7939e6327c137ad3a733d7821041c678e724749ebd33c26d4233b7fa2795965fe0e1c14716d851fbb6a33008404e872fed4529c9691cb203
7
- data.tar.gz: fc365edcec4c657329d77884bb5d1729fd68da63903c482f87f098b9fdcc6e9fb15a384ad121a8c318cecd665dd47c25c356dc57693c88052c45fbfce2779019
6
+ metadata.gz: 56c3cbab08955b28a0e63cc052d55b0b7262f5cd68e0bb2be9a4d0d95ebc4b44fb6387e2c087442195b774088c8c6fe1bdbbe73531b2bdb99d8c629f3d321cd1
7
+ data.tar.gz: 338a98167bc076983ed114f5ad58de97d106964c543f4c0449b018d6d492f36d1896c6c3611b047de23ff144bda045d59f55e86073c59f237071321bdbaad270
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.0.3 (2026-02-28)
4
+ * Remove unnecessary visited set from FlameGraphPrinter (call tree is always acyclic)
5
+ * Remove sort_by in FlameGraphPrinter to preserve natural call order
6
+ * Add `max_depth` option to FlameGraphPrinter, CallStackPrinter, CallInfoPrinter, and CallTreeVisitor
7
+ * Add documentation covering call tree construction and recursion handling
8
+
3
9
  ## 2.0.2 (2026-02-17)
4
10
  * Fix bin/ruby-prof passing printer options as positional arguments instead of keyword arguments
5
11