mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2024-12-22 22:49:28 -07:00
Release 0.14.0
This commit is contained in:
parent
1867491508
commit
d8c78d29fb
4 changed files with 6 additions and 3 deletions
|
@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
## [0.14.0] - 2021-11-06
|
||||
### Added
|
||||
- Support for ariadne.id notation proofs
|
||||
|
||||
## [0.13.0] - 2021-07-26
|
||||
### Added
|
||||
|
|
2
dist/doip.js
vendored
2
dist/doip.js
vendored
|
@ -10535,7 +10535,7 @@ exports.process = async (publicKey) => {
|
|||
usersOutput[i].claims = notations
|
||||
.filter(
|
||||
({ name, humanReadable }) =>
|
||||
humanReadable && name === 'proof@metacode.biz'
|
||||
humanReadable && (name === 'proof@ariadne.id' || name === 'proof@metacode.biz')
|
||||
)
|
||||
.map(
|
||||
({ value }) =>
|
||||
|
|
2
dist/doip.min.js
vendored
2
dist/doip.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "doipjs",
|
||||
"version": "0.13.0",
|
||||
"version": "0.14.0",
|
||||
"description": "Decentralized OpenPGP Identity Proofs library in Node.js",
|
||||
"main": "src/index.js",
|
||||
"dependencies": {
|
||||
|
|
Loading…
Reference in a new issue