forked from Mirrors/doipjs
Release 0.9.4
This commit is contained in:
parent
1878773c59
commit
e3392431d1
7 changed files with 16 additions and 5 deletions
|
@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.9.4] - 2021-01-10
|
||||||
|
## Fixed
|
||||||
|
- Fix typo in keyserver url
|
||||||
|
|
||||||
## [0.9.3] - 2021-01-10
|
## [0.9.3] - 2021-01-10
|
||||||
## Fixed
|
## Fixed
|
||||||
- Fix regex skipping some claims
|
- Fix regex skipping some claims
|
||||||
|
|
2
dist/doip.js
vendored
2
dist/doip.js
vendored
|
@ -3053,7 +3053,7 @@ const verify = (signature, opts) => {
|
||||||
const signersUserId = sigData.signature.packets[0].signersUserId
|
const signersUserId = sigData.signature.packets[0].signersUserId
|
||||||
const preferredKeyServer =
|
const preferredKeyServer =
|
||||||
sigData.signature.packets[0].preferredKeyServer ||
|
sigData.signature.packets[0].preferredKeyServer ||
|
||||||
'https://keys.openppg.org/'
|
'https://keys.openpgp.org/'
|
||||||
const text = sigData.getText()
|
const text = sigData.getText()
|
||||||
let sigKeys = []
|
let sigKeys = []
|
||||||
let sigClaims = []
|
let sigClaims = []
|
||||||
|
|
2
dist/doip.min.js
vendored
2
dist/doip.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,4 +1,4 @@
|
||||||
# doip.js <small>0.9.3</small>
|
# doip.js <small>0.9.4</small>
|
||||||
|
|
||||||
<img src="doip.png" width="120">
|
<img src="doip.png" width="120">
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,12 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [0.9.4]
|
||||||
|
|
||||||
|
[2021-01-10](https://codeberg.org/keyoxide/doipjs/releases/tag/0.9.4)
|
||||||
|
|
||||||
|
## Fixed
|
||||||
|
- Fix typo in keyserver url
|
||||||
|
|
||||||
## [0.9.3]
|
## [0.9.3]
|
||||||
|
|
||||||
[2021-01-10](https://codeberg.org/keyoxide/doipjs/releases/tag/0.9.3)
|
[2021-01-10](https://codeberg.org/keyoxide/doipjs/releases/tag/0.9.3)
|
||||||
|
|
|
@ -15,7 +15,7 @@ npm install --save doipjs
|
||||||
Install on website by including the following HTML snippet:
|
Install on website by including the following HTML snippet:
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<script src="https://cdn.jsdelivr.net/npm/doipjs@0.9.3/dist/doip.min.js"></script>
|
<script src="https://cdn.jsdelivr.net/npm/doipjs@0.9.4/dist/doip.min.js"></script>
|
||||||
```
|
```
|
||||||
|
|
||||||
Next step: [quick start (Node.js)](quickstart-nodejs.md) and [quick start (browser)](quickstart-browser.md)
|
Next step: [quick start (Node.js)](quickstart-nodejs.md) and [quick start (browser)](quickstart-browser.md)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "doipjs",
|
"name": "doipjs",
|
||||||
"version": "0.9.3",
|
"version": "0.9.4",
|
||||||
"description": "Decentralized OpenPGP Identity Proofs library in Node.js",
|
"description": "Decentralized OpenPGP Identity Proofs library in Node.js",
|
||||||
"main": "src/index.js",
|
"main": "src/index.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
Loading…
Reference in a new issue