Skip to content

Releases: klimeapp/klime-elixir

v1.1.0

28 Jan 22:23
3889df4

Choose a tag to compare

  • BREAKING: Simplified API to use application config instead of passing client reference to every function call
    • Configure once in config/config.exs with config :klime, write_key: "..."
    • Add Klime.Client directly to supervision tree (no options needed)
    • All functions now use module calls: Klime.track("Event", %{}, user_id: "123") instead of Klime.track(client, "Event", %{}, user_id: "123")
  • Function arities reduced: track/4track/3, identify/3identify/2, group/4group/3, flush/1flush/0, shutdown/1shutdown/0

v1.0.1

28 Jan 16:58
d8a1708

Choose a tag to compare

  • README tweak

v1.0.0

28 Jan 16:51
a7b22e6

Choose a tag to compare

  • Initial release of Klime Elixir SDK