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

feat(docs): add groups in ExDoc

ovyerus.com 6c7c464a f622d682

verified
Changed files
+11 -3
+1 -1
README.md
··· 21 ```elixir 22 def deps do 23 [ 24 - {:atex, "~> 0.3"} 25 ] 26 end 27 ```
··· 21 ```elixir 22 def deps do 23 [ 24 + {:atex, "~> 0.5"} 25 ] 26 end 27 ```
+10 -2
mix.exs
··· 54 [ 55 extras: [ 56 LICENSE: [title: "License"], 57 - "README.md": [title: "Overview"] 58 ], 59 main: "readme", 60 source_url: @github, 61 source_ref: "v#{@version}", 62 - formatters: ["html"] 63 ] 64 end 65 end
··· 54 [ 55 extras: [ 56 LICENSE: [title: "License"], 57 + "README.md": [title: "Overview"], 58 + "CHANGELOG.md": [title: "Changelog"] 59 ], 60 main: "readme", 61 source_url: @github, 62 source_ref: "v#{@version}", 63 + formatters: ["html"], 64 + groups_for_modules: [ 65 + "Data types": [Atex.AtURI, Atex.DID, Atex.Handle, Atex.NSID, Atex.TID], 66 + XRPC: ~r/^Atex\.XRPC/, 67 + OAuth: [Atex.Config.OAuth, Atex.OAuth, Atex.OAuth.Plug], 68 + Lexicons: ~r/^Atex\.Lexicon/, 69 + Identity: ~r/^Atex\.IdentityResolver/ 70 + ] 71 ] 72 end 73 end