A set of utilities for working with the AT Protocol in Elixir.

v0.3.0

ovyerus.com 252a3252 8a11da83

verified
Changed files
+8 -5
+5 -2
CHANGELOG.md
··· 6 6 and this project adheres to 7 7 [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 8 8 9 - ## [Unreleased] 9 + <!-- ## [Unreleased] --> 10 + 11 + ## [0.3.0] - 2025-06-29 10 12 11 13 ### Changed 12 14 ··· 34 36 35 37 Initial release. 36 38 37 - [unreleased]: https://github.com/cometsh/atex/compare/v0.2.0...HEAD 39 + [unreleased]: https://github.com/cometsh/atex/compare/v0.3.0...HEAD 40 + [0.3.0]: https://github.com/cometsh/atex/releases/tag/v0.3.0 38 41 [0.2.0]: https://github.com/cometsh/atex/releases/tag/v0.2.0 39 42 [0.1.0]: https://github.com/cometsh/atex/releases/tag/v0.1.0
+2 -2
README.md
··· 8 8 - [x] `at://` parsing and struct 9 9 - [x] TID codecs 10 10 - [x] XRPC client 11 - - [ ] DID & handle resolution service with a cache 11 + - [x] DID & handle resolution service with a cache 12 12 - [ ] Structs with validation for the common lexicons 13 13 - [ ] Probably codegen for doing this with other lexicons 14 14 - [ ] Extended XRPC client with support for validated inputs/outputs ··· 21 21 ```elixir 22 22 def deps do 23 23 [ 24 - {:atex, "~> 0.1"} 24 + {:atex, "~> 0.3"} 25 25 ] 26 26 end 27 27 ```
+1 -1
mix.exs
··· 1 1 defmodule Atex.MixProject do 2 2 use Mix.Project 3 3 4 - @version "0.2.0" 4 + @version "0.3.0" 5 5 @source_url "https://github.com/cometsh/atex" 6 6 7 7 def project do