···11-## [Unreleased]
11+## [0.0.3] - 2024-03-06
22+33+- added `Document#handles` with handle info extracted from `alsoKnownAs` field
44+- added validation of various fields of the DID document
55+- added `DID#resolved_by` (`:dns` or `:http`)
66+- added `DID#did` which returns the DID in a string form like `to_s`
77+- added `DID#web_domain` which returns the domain part of a `did:web`
88+- changed `DID#type` to be stored as a symbol
99+1010+## [0.0.2] - 2023-11-14
1111+1212+- fixed missing require
1313+- fixed some connection error handling
1414+1515+## [0.0.1] - 2023-11-14
2161717+Initial release:
1818+1919+- resolving handle to DID via DNS or HTTP well-known
2020+- loading DID document via PLC or did:web well-known
2121+- extracting PDS endpoint field from the DID doc
+1-1
lib/didkit/version.rb
···11# frozen_string_literal: true
2233module DIDKit
44- VERSION = "0.0.2"
44+ VERSION = "0.0.3"
55end