A library for handling DID identifiers used in Bluesky AT Protocol

release 0.1.0

+10 -1
+9
CHANGELOG.md
··· 1 + ## [0.1.0] - 2024-03-12 2 + 3 + - rejecting handles from disallowed domains like `.arpa` or `.test` 4 + - validating handles with the `.well-known` file having a trailing newline 5 + - validating handles with `.well-known` address returning a redirect 6 + - added `#pick_valid_handle` helper 7 + - allow overriding the nameserver for `Resolv::DNS` 8 + - other bug fixes 9 + 1 10 ## [0.0.4] - 2024-03-07 2 11 3 12 - extracted resolving code from `DID` to a new `Resolver` class (`DID` has helper methods to call the resolver)
+1 -1
lib/didkit/version.rb
··· 1 1 # frozen_string_literal: true 2 2 3 3 module DIDKit 4 - VERSION = "0.0.4" 4 + VERSION = "0.1.0" 5 5 end