diff options
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | erebos.cabal | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 56fc058..cddb159 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Revision history for erebos +## 0.1.8.1 -- 2025-03-29 + +* Fix build from sdist (add missing include) + ## 0.1.8 -- 2025-03-28 * Discovery service without requiring ICE support diff --git a/erebos.cabal b/erebos.cabal index 4e45f3c..7f96d80 100644 --- a/erebos.cabal +++ b/erebos.cabal @@ -1,7 +1,7 @@ Cabal-Version: 3.0 Name: erebos -Version: 0.1.8 +Version: 0.1.8.1 Synopsis: Decentralized messaging and synchronization Description: Library and simple CLI interface implementing the Erebos identity @@ -29,6 +29,7 @@ Extra-Doc-Files: CHANGELOG.md Extra-Source-Files: src/Erebos/ICE/pjproject.h + src/Erebos/Network/ifaddrs.h Flag ice Description: Enable peer discovery with ICE support using pjproject @@ -132,6 +133,8 @@ library src/Erebos/Network/ifaddrs.c include-dirs: src + includes: + src/Erebos/Network/ifaddrs.h if flag(ice) exposed-modules: |