Skip to content

Commit

Permalink
Bump version to 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jceb committed Apr 12, 2024
1 parent edb7f51 commit e86b135
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 18 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

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

## [0.3.1] - 2024-04-12

### Bug Fixes

- Correct name of credentials with a single type
- Add titles to links and make demo pages link open in new tab

### Features

- Store source URL with presentation
- Add link to presentation
- Strip namespace and capitalize property names
- Display claims in table

## [0.3.0] - 2024-04-11

### Bug Fixes
Expand Down
50 changes: 32 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
{
"name": "identinet-plugin",
"version": "0.3.0",
"version": "0.3.1",
"description": "Displays and verifies decentralized identity information of websites",
"type": "module",
"scripts": {
"scripts":
{
"dev": "NODE_ENV=development vinxi dev",
"build": "vinxi build",
"start": "vinxi start",
"test": "vitest --dir ."
},
"repository": {
"repository":
{
"type": "git",
"url": "https://github.com/identinet/identinet-plugin"
},
"keywords": [
"keywords":
[
"firefox",
"chrome",
"extension",
Expand All @@ -28,7 +31,8 @@
],
"author": "Jan Christoph Ebersbach",
"license": "AGPL-3.0",
"devDependencies": {
"devDependencies":
{
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"rollup": "^4.10.0",
Expand All @@ -41,7 +45,8 @@
"web-ext": "^7.11.0"
},
"browser": true,
"dependencies": {
"dependencies":
{
"@digitalbazaar/ed25519-signature-2018": "^4.0.0",
"@digitalbazaar/ed25519-signature-2020": "^5.2.0",
"@digitalbazaar/vc": "^6.2.0",
Expand All @@ -63,39 +68,48 @@
"unocss": "^0.58.5",
"unocss-preset-daisy": "^7.0.0"
},
"engines": {
"engines":
{
"node": ">=18.0"
},
"eslintConfig": {
"env": {
"eslintConfig":
{
"env":
{
"browser": true,
"es2020": true
},
"globals": {
"globals":
{
"ENV": true
},
"extends": "eslint:recommended",
"parserOptions": {
"parserOptions":
{
"sourceType": "module"
},
"rules": {
"indent": [
"rules":
{
"indent":
[
"error",
2
],
"linebreak-style": [
"linebreak-style":
[
"error",
"unix"
],
"quotes": [
"quotes":
[
"error",
"single"
],
"semi": [
"semi":
[
"error",
"always"
]
}
}
}

}

0 comments on commit e86b135

Please sign in to comment.