fix serialization, added benchmark tests, updated next release docs

This commit is contained in:
yusing
2025-01-26 15:08:10 +08:00
parent 83ea19dd92
commit bbc10cb105
7 changed files with 120 additions and 4 deletions

View File

@@ -111,3 +111,11 @@ func TestFinishMultipleCalls(t *testing.T) {
}
wg.Wait()
}
func BenchmarkTasks(b *testing.B) {
for range b.N {
task := testTask()
task.Subtask("", true).Finish(nil)
task.Finish(nil)
}
}