Skip to content

Releases: Quantaly/shunt

v2.0.1

Choose a tag to compare

@Quantaly Quantaly released this 05 Jul 18:03
cd1b63e

[2.0.1] - 2025-07-05

Fixed

  • Removed vestigial reference to panicking behavior in Task.Join() documentation
  • Fixed version tag links in changelog

[2.0.0] - 2025-07-05

Removed

  • Panics are no longer automatically handled. A panic in a task will crash the program, unless you recover from it on your own.
    • Removed Task.JoinWithoutPanicking()

Changed

  • Updated GitHub Actions workflow
    • Tests on both "stable" and "oldstable" Go versions
    • Simplify

1.1.1

Choose a tag to compare

@Quantaly Quantaly released this 29 Nov 23:14
a4dc472

Changed

  • Refactored internals
    • Simpler structure
    • Reduced memory usage

1.1.0

Choose a tag to compare

@Quantaly Quantaly released this 29 Nov 21:55
510bdae

Added

  • Testing with GitHub Actions
  • Task.JoinWithoutPanicking() to return panics as errors rather than actually panicking

1.0.0

Choose a tag to compare

@Quantaly Quantaly released this 07 Mar 20:12
59c5472

Added

  • Task struct representing a shunted function execution
  • Do function to start a new Task
  • Simple example