Changelog

View Source

All notable changes to this project will be documented in this file. See Keep a CHANGELOG for how to update this file. This project adheres to Semantic Versioning.

0.2.2 - 2025-03-04

  • Enhancements\n Improved ExDoc configuration for HexDocs\n Added changelog to package metadata for Hex.pm

0.2.1 - 2025-03-04

Changed

  • Provide default implementation for Humaans.Client.

0.2.0 - 2025-03-03

Changed

  • Breaking change: Switched to a client-based approach instead of global configuration
  • Added convenience accessor functions for resource modules

Usage changes

Instead of using global configuration:

{:ok, people} = Humaans.People.list()

Now use the client-based approach:

client = Humaans.new(access_token: "YOUR_ACCESS_TOKEN")
{:ok, people} = Humaans.People.list(client)

0.1.0 - 2025-02-26

Initial release. :rocket: