A library for handling DID identifiers used in Bluesky AT Protocol

release 0.2.3

+8 -1
+7
CHANGELOG.md
··· 1 + ## [0.2.3] - 2024-07-02 2 + 3 + - added a `DID#get_audit_log` method that fetches the PLC audit log for a DID 4 + - added a way to set an error handler in `PLCImporter` 5 + - reverted the change from 0.2.1 that added Ruby stdlib dependencies explicitly to the gemspec, since this causes more problems than it's worth 6 + - minor bug fixes 7 + 1 8 ## [0.2.2] - 2024-04-01 2 9 3 10 - added helpers for checking if a DID is known by (federated with) a relay or if the repo exists on its assigned PDS
+1 -1
lib/didkit/version.rb
··· 1 1 # frozen_string_literal: true 2 2 3 3 module DIDKit 4 - VERSION = "0.2.2" 4 + VERSION = "0.2.3" 5 5 end