Release 0.10.5

This commit is contained in:
Yarmo Mackenbach 2021-03-02 15:24:43 +01:00
parent 44b76d6ed8
commit f68b9b4160
No known key found for this signature in database
GPG key ID: 37367F4AF4087AD1
7 changed files with 16 additions and 7 deletions

View file

@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.10.5] - 2021-03-02
## Fixed
- Logic error
## [0.10.4] - 2021-03-02
## Changed
- Add Twitter proxy verification

4
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.4",
"version": "0.10.5",
"description": "Decentralized OpenPGP Identity Proofs library in Node.js",
"main": "src/index.js",
"dependencies": {
@ -3013,8 +3013,6 @@ const customRequestHandler = async (spData, opts) => {
spData.proof.fetch = `https://${opts.nitterInstance}/${match[1]}/status/${match[2]}`
const res = await serviceproviders.proxyRequestHandler(spData, opts)
return res
} else {
return null
}
}

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.4</small>
# doip.js <small>0.10.5</small>
<img src="doip.png" width="120">

View file

@ -1,5 +1,12 @@
# Changelog
## [0.10.5]
[2021-03-02](https://codeberg.org/keyoxide/doipjs/releases/tag/0.10.5)
## Fixed
- Logic error
## [0.10.4]
[2021-03-02](https://codeberg.org/keyoxide/doipjs/releases/tag/0.10.4)

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.4/dist/doip.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/doipjs@0.10.5/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.4",
"version": "0.10.5",
"description": "Decentralized OpenPGP Identity Proofs library in Node.js",
"main": "src/index.js",
"dependencies": {