Skip to content

Commit

Permalink
chore: Prepare for 0.3.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nklomp committed Nov 24, 2022
1 parent da1ee64 commit 668ac05
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# Release Notes

## v0.3.3 - 2022-11-24
## v0.3.4 - 2022-11-24
Release with support for the pre-authorized code flow only!

- Fixes:
- Matching server metadata on Initiation Request types wasn't working

## v0.3.3 - 2022-11-24
Discard release because of a merge problem.

## v0.3.2 - 2022-11-21
Release with support for the pre-authorized code flow only!
Expand Down
2 changes: 1 addition & 1 deletion lib/OpenID4VCIClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export class OpenID4VCIClient {

getCredentialsSupported(restrictToInitiationTypes: boolean): CredentialsSupported {
const credentialsSupported = this.serverMetadata.openid4vci_metadata.credentials_supported;
if (restrictToInitiationTypes !== true) {
if (restrictToInitiationTypes === false) {
return credentialsSupported;
}
const initiationTypes = this.getCredentialTypesFromInitiation();
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sphereon/openid4vci-client",
"version": "0.3.4-unstable.0",
"version": "0.3.4",
"description": "OpenID for Verifiable Credential Issuance (OpenID4VCI) client",
"main": "dist/main/index.js",
"types": "dist/main/index.d.ts",
Expand Down

0 comments on commit 668ac05

Please sign in to comment.