Skip to content

Commit

Permalink
chore(release): 2.1.0-develop.1 [skip ci]
Browse files Browse the repository at this point in the history
## [2.1.0-develop.1](2.0.8...2.1.0-develop.1) (2024-02-20)

### Features

* Rename verificationMethodId to kid [DEV-3670] ([#271](#271)) ([fe0aeeb](fe0aeeb))
  • Loading branch information
semantic-release-bot committed Feb 20, 2024
1 parent fe0aeeb commit 24dbb08
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 19 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [2.1.0-develop.1](https://github.com/cheqd/did-registrar/compare/2.0.8...2.1.0-develop.1) (2024-02-20)


### Features

* Rename verificationMethodId to kid [DEV-3670] ([#271](https://github.com/cheqd/did-registrar/issues/271)) ([fe0aeeb](https://github.com/cheqd/did-registrar/commit/fe0aeebc4d09cc8cb7f9de3a56c4b5ff1a4ccbb5))

## [2.0.8](https://github.com/cheqd/did-registrar/compare/2.0.7...2.0.8) (2023-11-24)

## [2.0.8-develop.1](https://github.com/cheqd/did-registrar/compare/2.0.7...2.0.8-develop.1) (2023-11-24)
Expand Down
37 changes: 18 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cheqd/did-registrar",
"version": "2.0.8",
"version": "2.1.0-develop.1",
"description": "Universal Registrar for cheqd DID method",
"homepage": "https://github.com/cheqd/did-registrar#readme",
"license": "Apache-2.0",
Expand All @@ -14,32 +14,31 @@
"url": "https://github.com/cheqd/did-registrar/issues"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./*": {
"types": "./dist/types/*.d.ts",
"import": "./dist/*.js",
"default": "./dist/*.js"
}
},
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./*": {
"types": "./dist/types/*.d.ts",
"import": "./dist/*.js",
"default": "./dist/*.js"
}
},
"scripts": {
"dev": "nodemon src/index.ts",
"start": "node dist/index.js",
"build": "tsc",
"format": "prettier --write 'src/**/*.{js,ts,cjs,mjs}' 'tests/**/*.{js,ts,cjs,mjs}'",
"test": "npx playwright test -c playwright.config.ts"
},

"eslintConfig": {
"root": true,
"extends": [
"typescript",
"prettier"
]
},
"root": true,
"extends": [
"typescript",
"prettier"
]
},
"files": [
"dist",
"example.env",
Expand Down

0 comments on commit 24dbb08

Please sign in to comment.