A set of utilities for working with the AT Protocol in Elixir.
1# Changelog 2 3All notable changes to atex will be documented in this file. 4 5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 6and this project adheres to 7[Semantic Versioning](https://semver.org/spec/v2.0.0.html). 8 9## [Unreleased] 10 11### Changed 12 13- `Atex.XRPC.Adapter` renamed to `Atex.HTTP.Adapter`. 14 15### Added 16 17- `Atex.HTTP` module that delegates to the currently configured adapter. 18 19## [0.2.0] - 2025-06-09 20 21### Added 22 23- `Atex.TID` module for manipulating ATProto TIDs. 24- `Atex.Base32Sortable` module for encoding/decoding numbers as 25 `base32-sortable` strings. 26- Basic XRPC client. 27 28## [0.1.0] - 2025-06-07 29 30Initial release. 31 32[unreleased]: https://github.com/cometsh/atex/compare/v0.2.0...HEAD 33[0.2.0]: https://github.com/cometsh/atex/releases/tag/v0.2.0 34[0.1.0]: https://github.com/cometsh/atex/releases/tag/v0.1.0