Skip to content

Commit e86b135

Browse files
committed
Bump version to 0.3.1
1 parent edb7f51 commit e86b135

2 files changed

Lines changed: 46 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.3.1] - 2024-04-12
6+
7+
### Bug Fixes
8+
9+
- Correct name of credentials with a single type
10+
- Add titles to links and make demo pages link open in new tab
11+
12+
### Features
13+
14+
- Store source URL with presentation
15+
- Add link to presentation
16+
- Strip namespace and capitalize property names
17+
- Display claims in table
18+
519
## [0.3.0] - 2024-04-11
620

721
### Bug Fixes

package.json

Lines changed: 32 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
11
{
22
"name": "identinet-plugin",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "Displays and verifies decentralized identity information of websites",
55
"type": "module",
6-
"scripts": {
6+
"scripts":
7+
{
78
"dev": "NODE_ENV=development vinxi dev",
89
"build": "vinxi build",
910
"start": "vinxi start",
1011
"test": "vitest --dir ."
1112
},
12-
"repository": {
13+
"repository":
14+
{
1315
"type": "git",
1416
"url": "https://github.com/identinet/identinet-plugin"
1517
},
16-
"keywords": [
18+
"keywords":
19+
[
1720
"firefox",
1821
"chrome",
1922
"extension",
@@ -28,7 +31,8 @@
2831
],
2932
"author": "Jan Christoph Ebersbach",
3033
"license": "AGPL-3.0",
31-
"devDependencies": {
34+
"devDependencies":
35+
{
3236
"@rollup/plugin-commonjs": "^25.0.7",
3337
"@rollup/plugin-node-resolve": "^15.2.3",
3438
"rollup": "^4.10.0",
@@ -41,7 +45,8 @@
4145
"web-ext": "^7.11.0"
4246
},
4347
"browser": true,
44-
"dependencies": {
48+
"dependencies":
49+
{
4550
"@digitalbazaar/ed25519-signature-2018": "^4.0.0",
4651
"@digitalbazaar/ed25519-signature-2020": "^5.2.0",
4752
"@digitalbazaar/vc": "^6.2.0",
@@ -63,39 +68,48 @@
6368
"unocss": "^0.58.5",
6469
"unocss-preset-daisy": "^7.0.0"
6570
},
66-
"engines": {
71+
"engines":
72+
{
6773
"node": ">=18.0"
6874
},
69-
"eslintConfig": {
70-
"env": {
75+
"eslintConfig":
76+
{
77+
"env":
78+
{
7179
"browser": true,
7280
"es2020": true
7381
},
74-
"globals": {
82+
"globals":
83+
{
7584
"ENV": true
7685
},
7786
"extends": "eslint:recommended",
78-
"parserOptions": {
87+
"parserOptions":
88+
{
7989
"sourceType": "module"
8090
},
81-
"rules": {
82-
"indent": [
91+
"rules":
92+
{
93+
"indent":
94+
[
8395
"error",
8496
2
8597
],
86-
"linebreak-style": [
98+
"linebreak-style":
99+
[
87100
"error",
88101
"unix"
89102
],
90-
"quotes": [
103+
"quotes":
104+
[
91105
"error",
92106
"single"
93107
],
94-
"semi": [
108+
"semi":
109+
[
95110
"error",
96111
"always"
97112
]
98113
}
99114
}
100-
}
101-
115+
}

0 commit comments

Comments
 (0)