From fd92978c702d6df89edad9deaf1910b2a8763ea7 Mon Sep 17 00:00:00 2001 From: Kuba Suder Date: Wed, 3 Jul 2024 00:45:55 +0200 Subject: [PATCH] release 0.2.3 --- CHANGELOG.md | 7 +++++++ lib/didkit/version.rb | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ac3c35..9be0c20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [0.2.3] - 2024-07-02 + +- added a `DID#get_audit_log` method that fetches the PLC audit log for a DID +- added a way to set an error handler in `PLCImporter` +- 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 +- minor bug fixes + ## [0.2.2] - 2024-04-01 - added helpers for checking if a DID is known by (federated with) a relay or if the repo exists on its assigned PDS diff --git a/lib/didkit/version.rb b/lib/didkit/version.rb index a7637a9..a05c669 100644 --- a/lib/didkit/version.rb +++ b/lib/didkit/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module DIDKit - VERSION = "0.2.2" + VERSION = "0.2.3" end