Skip to content

Commit

Permalink
chore(release): v0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Mar 18, 2024
1 parent b0f6a1b commit f19b76c
Show file tree
Hide file tree
Showing 20 changed files with 223 additions and 38 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.6.1](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.6.0...v0.6.1) (2024-03-18)


### Bug Fixes

* base64url convention ([#179](https://github.com/openwallet-foundation-labs/sd-jwt-js/issues/179)) ([f8db275](https://github.com/openwallet-foundation-labs/sd-jwt-js/commit/f8db275690dab88000a039838680a3478b3b61ec))
* incorrect condition on workflow step ([#176](https://github.com/openwallet-foundation-labs/sd-jwt-js/issues/176)) ([fec88f0](https://github.com/openwallet-foundation-labs/sd-jwt-js/commit/fec88f0c084ee09b3a0c80920782c3efadfc51b1))
* **sd-jwt-vc:** improve alignment with draft-03 ([#175](https://github.com/openwallet-foundation-labs/sd-jwt-js/issues/175)) ([bcd7d6e](https://github.com/openwallet-foundation-labs/sd-jwt-js/commit/bcd7d6e40fff938d06425d69297274400ab9e8a6))


### Features

* set token for deployment ([#174](https://github.com/openwallet-foundation-labs/sd-jwt-js/issues/174)) ([d097f8c](https://github.com/openwallet-foundation-labs/sd-jwt-js/commit/d097f8c0047abeefd7840d431521da4f7c331804))





# [0.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)


Expand Down
6 changes: 4 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "0.6.0",
"version": "0.6.1",
"npmClient": "pnpm",
"exact": true,
"message": "chore(release): %s",
"packages": ["packages/*"],
"packages": [
"packages/*"
],
"command": {
"publish": {
"conventionalCommits": true
Expand Down
8 changes: 8 additions & 0 deletions packages/browser-crypto/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.6.1](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.6.0...v0.6.1) (2024-03-18)

**Note:** Version bump only for package @sd-jwt/crypto-browser





# [0.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)

**Note:** Version bump only for package @sd-jwt/crypto-browser
Expand Down
17 changes: 13 additions & 4 deletions packages/browser-crypto/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sd-jwt/crypto-browser",
"version": "0.6.0",
"version": "0.6.1",
"description": "sd-jwt draft 7 implementation in typescript",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -18,7 +18,11 @@
"test:browser": "vitest run ./src/test/*.spec.ts",
"test:cov": "vitest run --coverage"
},
"keywords": ["sd-jwt", "sdjwt", "sd-jwt-vc"],
"keywords": [
"sd-jwt",
"sdjwt",
"sd-jwt-vc"
],
"repository": {
"type": "git",
"url": "https://github.com/openwallet-foundation-labs/sd-jwt-js"
Expand All @@ -33,12 +37,17 @@
"access": "public"
},
"tsup": {
"entry": ["./src/index.ts"],
"entry": [
"./src/index.ts"
],
"sourceMap": true,
"splitting": false,
"clean": true,
"dts": true,
"format": ["cjs", "esm"]
"format": [
"cjs",
"esm"
]
},
"gitHead": "ded40e4551bde7ae93083181bf26bd1b38bbfcfb"
}
11 changes: 11 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.6.1](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.6.0...v0.6.1) (2024-03-18)


### Bug Fixes

* base64url convention ([#179](https://github.com/openwallet-foundation-labs/sd-jwt-js/issues/179)) ([f8db275](https://github.com/openwallet-foundation-labs/sd-jwt-js/commit/f8db275690dab88000a039838680a3478b3b61ec))





# [0.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)

**Note:** Version bump only for package @sd-jwt/core
Expand Down
17 changes: 13 additions & 4 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sd-jwt/core",
"version": "0.6.0",
"version": "0.6.1",
"description": "sd-jwt draft 7 implementation in typescript",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -19,7 +19,11 @@
"test:browser": "vitest run ./src/test/*.spec.ts --environment jsdom",
"test:cov": "vitest run --coverage"
},
"keywords": ["sd-jwt", "sdjwt", "sd-jwt-vc"],
"keywords": [
"sd-jwt",
"sdjwt",
"sd-jwt-vc"
],
"engines": {
"node": ">=16"
},
Expand All @@ -46,12 +50,17 @@
"access": "public"
},
"tsup": {
"entry": ["./src/index.ts"],
"entry": [
"./src/index.ts"
],
"sourceMap": true,
"splitting": false,
"clean": true,
"dts": true,
"format": ["cjs", "esm"]
"format": [
"cjs",
"esm"
]
},
"gitHead": "ded40e4551bde7ae93083181bf26bd1b38bbfcfb"
}
11 changes: 11 additions & 0 deletions packages/decode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.6.1](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.6.0...v0.6.1) (2024-03-18)


### Bug Fixes

* base64url convention ([#179](https://github.com/openwallet-foundation-labs/sd-jwt-js/issues/179)) ([f8db275](https://github.com/openwallet-foundation-labs/sd-jwt-js/commit/f8db275690dab88000a039838680a3478b3b61ec))





# [0.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)

**Note:** Version bump only for package @sd-jwt/decode
Expand Down
17 changes: 13 additions & 4 deletions packages/decode/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sd-jwt/decode",
"version": "0.6.0",
"version": "0.6.1",
"description": "sd-jwt draft 7 implementation in typescript",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -18,7 +18,11 @@
"test:node": "vitest run ./src/test/*.spec.ts --coverage",
"test:browser": "vitest run ./src/test/*.spec.ts --environment jsdom --coverage"
},
"keywords": ["sd-jwt", "sdjwt", "sd-jwt-vc"],
"keywords": [
"sd-jwt",
"sdjwt",
"sd-jwt-vc"
],
"engines": {
"node": ">=16"
},
Expand All @@ -43,12 +47,17 @@
"access": "public"
},
"tsup": {
"entry": ["./src/index.ts"],
"entry": [
"./src/index.ts"
],
"sourceMap": true,
"splitting": false,
"clean": true,
"dts": true,
"format": ["cjs", "esm"]
"format": [
"cjs",
"esm"
]
},
"gitHead": "ded40e4551bde7ae93083181bf26bd1b38bbfcfb"
}
8 changes: 8 additions & 0 deletions packages/hash/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.6.1](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.6.0...v0.6.1) (2024-03-18)

**Note:** Version bump only for package @sd-jwt/hash





# [0.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)

**Note:** Version bump only for package @sd-jwt/hash
Expand Down
17 changes: 13 additions & 4 deletions packages/hash/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sd-jwt/hash",
"version": "0.6.0",
"version": "0.6.1",
"description": "sd-jwt draft 7 implementation in typescript",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -19,7 +19,11 @@
"test:browser": "vitest run ./src/test/*.spec.ts --environment jsdom",
"test:cov": "vitest run --coverage"
},
"keywords": ["sd-jwt", "sdjwt", "sd-jwt-vc"],
"keywords": [
"sd-jwt",
"sdjwt",
"sd-jwt-vc"
],
"engines": {
"node": ">=16"
},
Expand All @@ -44,12 +48,17 @@
"access": "public"
},
"tsup": {
"entry": ["./src/index.ts"],
"entry": [
"./src/index.ts"
],
"sourceMap": true,
"splitting": false,
"clean": true,
"dts": true,
"format": ["cjs", "esm"]
"format": [
"cjs",
"esm"
]
},
"gitHead": "ded40e4551bde7ae93083181bf26bd1b38bbfcfb"
}
8 changes: 8 additions & 0 deletions packages/node-crypto/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.6.1](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.6.0...v0.6.1) (2024-03-18)

**Note:** Version bump only for package @sd-jwt/crypto-nodejs





# [0.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)

**Note:** Version bump only for package @sd-jwt/crypto-nodejs
Expand Down
17 changes: 13 additions & 4 deletions packages/node-crypto/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sd-jwt/crypto-nodejs",
"version": "0.6.0",
"version": "0.6.1",
"description": "sd-jwt draft 7 implementation in typescript",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -18,7 +18,11 @@
"test:node": "vitest run ./src/test/*.spec.ts",
"test:cov": "vitest run --coverage"
},
"keywords": ["sd-jwt", "sdjwt", "sd-jwt-vc"],
"keywords": [
"sd-jwt",
"sdjwt",
"sd-jwt-vc"
],
"engines": {
"node": ">=16"
},
Expand All @@ -36,12 +40,17 @@
"access": "public"
},
"tsup": {
"entry": ["./src/index.ts"],
"entry": [
"./src/index.ts"
],
"sourceMap": true,
"splitting": false,
"clean": true,
"dts": true,
"format": ["cjs", "esm"]
"format": [
"cjs",
"esm"
]
},
"gitHead": "ded40e4551bde7ae93083181bf26bd1b38bbfcfb"
}
8 changes: 8 additions & 0 deletions packages/present/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.6.1](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.6.0...v0.6.1) (2024-03-18)

**Note:** Version bump only for package @sd-jwt/present





# [0.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)


Expand Down
17 changes: 13 additions & 4 deletions packages/present/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sd-jwt/present",
"version": "0.6.0",
"version": "0.6.1",
"description": "sd-jwt draft 7 implementation in typescript",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -19,7 +19,11 @@
"test:browser": "vitest run ./src/test/*.spec.ts --environment jsdom",
"test:cov": "vitest run --coverage"
},
"keywords": ["sd-jwt", "sdjwt", "sd-jwt-vc"],
"keywords": [
"sd-jwt",
"sdjwt",
"sd-jwt-vc"
],
"engines": {
"node": ">=16"
},
Expand All @@ -45,12 +49,17 @@
"access": "public"
},
"tsup": {
"entry": ["./src/index.ts"],
"entry": [
"./src/index.ts"
],
"sourceMap": true,
"splitting": false,
"clean": true,
"dts": true,
"format": ["cjs", "esm"]
"format": [
"cjs",
"esm"
]
},
"gitHead": "ded40e4551bde7ae93083181bf26bd1b38bbfcfb"
}
11 changes: 11 additions & 0 deletions packages/sd-jwt-vc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.6.1](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.6.0...v0.6.1) (2024-03-18)


### Bug Fixes

* **sd-jwt-vc:** improve alignment with draft-03 ([#175](https://github.com/openwallet-foundation-labs/sd-jwt-js/issues/175)) ([bcd7d6e](https://github.com/openwallet-foundation-labs/sd-jwt-js/commit/bcd7d6e40fff938d06425d69297274400ab9e8a6))





# [0.6.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.5.0...v0.6.0) (2024-03-12)

**Note:** Version bump only for package @sd-jwt/sd-jwt-vc
Expand Down
Loading

0 comments on commit f19b76c

Please sign in to comment.