A library for handling DID identifiers used in Bluesky AT Protocol

release 0.3.2

+8 -1
+7
CHANGELOG.md
··· 1 + ## [0.3.2] - 2026-02-15 2 + 3 + - added YARD API documentation 4 + - marked some helper methods in `requests.rb`, `at_handles.rb` and `DIDKit::Resolver` as private 5 + - merged all "FormatErrors" into one `DIDKit::FormatError` 6 + - added `frozen_string_literal` directive everywhere to minimize garbage collection 7 + 1 8 ## [0.3.1] - 2025-12-19 2 9 3 10 - allow passing a DID string or object to `#resolve_handle` and just return that DID – so you can have a script that accepts either a handle or a DID, and passes the input to `DID.resolve_handle` without checking which one it is
+1 -1
lib/didkit/version.rb
··· 1 1 # frozen_string_literal: true 2 2 3 3 module DIDKit 4 - VERSION = "0.3.1" 4 + VERSION = "0.3.2" 5 5 end