Release 0.10.1

This commit is contained in:
Yarmo Mackenbach 2021-01-26 21:53:21 +01:00
parent 333acd5c0d
commit 0c51e96cf9
No known key found for this signature in database
GPG key ID: 37367F4AF4087AD1
7 changed files with 28 additions and 5 deletions

View file

@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.10.1] - 2021-01-26
## Fixed
- Polyfill for promise.allSettled
## [0.10.0] - 2021-01-13
## Added
- Owncast service provider

14
dist/doip.js vendored
View file

@ -1193,7 +1193,7 @@ process.umask = function() { return 0; };
},{}],9:[function(require,module,exports){
module.exports={
"name": "doipjs",
"version": "0.10.0",
"version": "0.10.1",
"description": "Decentralized OpenPGP Identity Proofs library in Node.js",
"main": "src/index.js",
"dependencies": {
@ -1274,6 +1274,18 @@ const serviceproviders = require('./serviceproviders')
const keys = require('./keys')
const utils = require('./utils')
// Promise.allSettled polyfill
Promise.allSettled = Promise.allSettled || ((promises) => Promise.all(promises.map(p => p
.then(v => ({
status: 'fulfilled',
value: v,
}))
.catch(e => ({
status: 'rejected',
reason: e,
}))
)));
const runVerificationJson = (
res,
proofData,

2
dist/doip.min.js vendored

File diff suppressed because one or more lines are too long

View file

@ -1,4 +1,4 @@
# doip.js <small>0.10.0</small>
# doip.js <small>0.10.1</small>
<img src="doip.png" width="120">

View file

@ -1,5 +1,12 @@
# Changelog
## [0.10.1]
[2021-01-13](https://codeberg.org/keyoxide/doipjs/releases/tag/0.10.1)
## Fixed
- Polyfill for promise.allSettled
## [0.10.0]
[2021-01-13](https://codeberg.org/keyoxide/doipjs/releases/tag/0.10.0)

View file

@ -15,7 +15,7 @@ npm install --save doipjs
Install on website by including the following HTML snippet:
```html
<script src="https://cdn.jsdelivr.net/npm/doipjs@0.10.0/dist/doip.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/doipjs@0.10.1/dist/doip.min.js"></script>
```
Next step: [quick start (Node.js)](quickstart-nodejs.md) and [quick start (browser)](quickstart-browser.md)

View file

@ -1,6 +1,6 @@
{
"name": "doipjs",
"version": "0.10.0",
"version": "0.10.1",
"description": "Decentralized OpenPGP Identity Proofs library in Node.js",
"main": "src/index.js",
"dependencies": {