Release 0.7.4

This commit is contained in:
Yarmo Mackenbach 2020-12-08 02:59:13 +01:00
parent e599b32dba
commit 0e53c47d8c
7 changed files with 18 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.7.4] - 2020-12-08
### Fixed
- Handling HKP URI
## [0.7.3] - 2020-12-08
### Fixed
- Bundled library for release

6
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.7.3",
"version": "0.7.4",
"description": "Decentralized OpenPGP Identity Proofs library in Node.js",
"main": "src/index.js",
"dependencies": {
@ -1607,7 +1607,7 @@ const fetchURI = (uri) => {
reject('Invalid URI')
}
const re = /([a-zA-Z0-9]*):([a-zA-Z0-9@._=+\-]*)(\:[a-zA-Z0-9@._=+\-]*)?/
const re = /([a-zA-Z0-9]*):([a-zA-Z0-9@._=+\-]*)(?:\:([a-zA-Z0-9@._=+\-]*))?/
const match = uri.match(re)
if (!match[1]) {
@ -1616,7 +1616,7 @@ const fetchURI = (uri) => {
switch (match[1]) {
case 'hkp':
resolve(fetchHKP(match[2], match.length >= 4 ? match[3] : null))
resolve(fetchHKP(match[3] ? match[3] : match[2], match[3] ? match[2] : null))
break
case 'wkd':
resolve(fetchWKD(match[2]))

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

View file

@ -1,5 +1,12 @@
# Changelog
## [0.7.4]
[2020-12-08](https://codeberg.org/keyoxide/doipjs/releases/tag/0.7.4)
### Fixed
- Handling HKP URI
## [0.7.3]
[2020-12-08](https://codeberg.org/keyoxide/doipjs/releases/tag/0.7.3)

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