-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
21 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,21 @@ | ||
## [Unreleased] | ||
## [0.0.3] - 2024-03-06 | ||
|
||
- added `Document#handles` with handle info extracted from `alsoKnownAs` field | ||
- added validation of various fields of the DID document | ||
- added `DID#resolved_by` (`:dns` or `:http`) | ||
- added `DID#did` which returns the DID in a string form like `to_s` | ||
- added `DID#web_domain` which returns the domain part of a `did:web` | ||
- changed `DID#type` to be stored as a symbol | ||
|
||
## [0.0.2] - 2023-11-14 | ||
|
||
- fixed missing require | ||
- fixed some connection error handling | ||
|
||
## [0.0.1] - 2023-11-14 | ||
|
||
Initial release: | ||
|
||
- resolving handle to DID via DNS or HTTP well-known | ||
- loading DID document via PLC or did:web well-known | ||
- extracting PDS endpoint field from the DID doc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module DIDKit | ||
VERSION = "0.0.2" | ||
VERSION = "0.0.3" | ||
end |