Elixir SDK for Pocketenv
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Bump version to 0.1.7 and document BLAKE2b fix

+7 -1
+6
CHANGELOG.md
··· 5 5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 6 6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 7 8 + ## [0.1.7] - 2026-04-02 9 + 10 + ### Fixed 11 + - Use `blake2` dependency for BLAKE2b-24 nonce derivation instead of `:crypto.hash/2`, fixing compatibility with macOS (LibreSSL) and ensuring the output matches libsodium's `crypto_box_seal` nonce exactly 12 + 8 13 ## [0.1.6] - 2026-04-02 9 14 10 15 ### Changed ··· 50 55 - MIT License 51 56 - Package description in `mix.exs` 52 57 58 + [0.1.7]: https://github.com/pocketenv-io/pocketenv-elixir/compare/v0.1.6...v0.1.7 53 59 [0.1.6]: https://github.com/pocketenv-io/pocketenv-elixir/compare/v0.1.5...v0.1.6 54 60 [0.1.5]: https://github.com/pocketenv-io/pocketenv-elixir/compare/v0.1.4...v0.1.5 55 61 [0.1.4]: https://github.com/pocketenv-io/pocketenv-elixir/compare/v0.1.3...v0.1.4
+1 -1
mix.exs
··· 4 4 def project do 5 5 [ 6 6 app: :pocketenv_ex, 7 - version: "0.1.6", 7 + version: "0.1.7", 8 8 elixir: "~> 1.15", 9 9 start_permanent: Mix.env() == :prod, 10 10 deps: deps(),