diff options
| author | Roman Smrž <roman.smrz@seznam.cz> | 2026-05-31 13:55:10 +0200 |
|---|---|---|
| committer | Roman Smrž <roman.smrz@seznam.cz> | 2026-05-31 13:55:10 +0200 |
| commit | 4977d2b1f416cd500379fad17cdc7fb9af1b3966 (patch) | |
| tree | ae63a9e8a2f38be52df2f92ff6e58532b3d02df4 | |
| parent | 8336831437bef31ea78f4b6838c2cbc5957bab94 (diff) | |
| -rw-r--r-- | CHANGELOG.md | 9 | ||||
| -rw-r--r-- | erebos-tester.cabal | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 85027e3..53c264a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Revision history for erebos-tester +## 0.3.5 -- 2026-05-31 + +* Added tags to group and filter tests. +* Initial support for polymorphic types. +* Added `concat` function and `++` operator to concatenate lists, and support for empty list expression. +* Added `killwith` clause to set a signal used to terminate `spawn`ed process. +* Added `pid` member to the `Process` type to get its system PID. +* Added command-line options to set path of tcpdump or disable its use. + ## 0.3.4 -- 2026-01-15 * Show call stack in error messages. diff --git a/erebos-tester.cabal b/erebos-tester.cabal index 0709d70..0bc7ad3 100644 --- a/erebos-tester.cabal +++ b/erebos-tester.cabal @@ -1,7 +1,7 @@ cabal-version: 3.0 name: erebos-tester -version: 0.3.4 +version: 0.3.5 synopsis: Test framework with virtual network using Linux namespaces description: This framework is intended mainly for networking libraries/applications and |