chore: release 2.0.1

This commit is contained in:
Yarmo Mackenbach 2024-09-01 11:50:56 +02:00
parent e249329f39
commit f9a6f84776
No known key found for this signature in database
GPG key ID: C248C28D432560ED
9 changed files with 14 additions and 10 deletions

View file

@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [2.0.1] - 2024-09-01
### Fixed
- Issue where Discord claims can have a null string
## [2.0.0] - 2024-08-12
### Added
- Discord identity claims

2
dist/doip.core.js vendored
View file

@ -6155,7 +6155,7 @@ var doip = (function (exports, openpgp$2, fetcher) {
homepage: 'https://discord.com'
},
profile: {
display: null,
display: 'Unknown username',
uri: null,
qr: null
},

File diff suppressed because one or more lines are too long

View file

@ -6002,7 +6002,7 @@ var doipFetchers = (function (exports) {
* doip.js library version
* @constant {string}
*/
const version = '2.0.0';
const version = '2.0.1';
/*
Copyright 2022 Yarmo Mackenbach
@ -11161,7 +11161,7 @@ var doipFetchers = (function (exports) {
homepage: 'https://discord.com'
},
profile: {
display: null,
display: 'Unknown username',
uri: null,
qr: null
},

File diff suppressed because one or more lines are too long

View file

@ -5988,7 +5988,7 @@ var doipFetchers = (function (exports) {
* doip.js library version
* @constant {string}
*/
const version = '2.0.0';
const version = '2.0.1';
/*
Copyright 2022 Yarmo Mackenbach
@ -11147,7 +11147,7 @@ var doipFetchers = (function (exports) {
homepage: 'https://discord.com'
},
profile: {
display: null,
display: 'Unknown username',
uri: null,
qr: null
},

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
{
"name": "doipjs",
"version": "2.0.0",
"version": "2.0.1",
"description": "Decentralized Online Identity Proofs library in Node.js",
"type": "module",
"main": "./src/index.js",

View file

@ -22,4 +22,4 @@ limitations under the License.
* doip.js library version
* @constant {string}
*/
export const version = '2.0.0'
export const version = '2.0.1'