A library for handling DID identifiers used in Bluesky AT Protocol

release 0.2.0

+7 -1
+6
CHANGELOG.md
··· 1 ## [0.1.0] - 2024-03-12 2 3 - rejecting handles from disallowed domains like `.arpa` or `.test`
··· 1 + ## [0.2.0] - 2024-03-19 2 + 3 + - added `PLCImporter` class, which lets you import operations from PLC in pages of 1000 through the "export" API 4 + - implemented parsing of all services from DID doc & operations, not only `atproto_pds` (specifically labeller endpoints) 5 + - allow setting the nameserver in `Resolver` initializer 6 + 7 ## [0.1.0] - 2024-03-12 8 9 - rejecting handles from disallowed domains like `.arpa` or `.test`
+1 -1
lib/didkit/version.rb
··· 1 # frozen_string_literal: true 2 3 module DIDKit 4 - VERSION = "0.1.0" 5 end
··· 1 # frozen_string_literal: true 2 3 module DIDKit 4 + VERSION = "0.2.0" 5 end