Skip to content

Commit

Permalink
Publish (#129)
Browse files Browse the repository at this point in the history
* finishes implementing applicant side of protocol

* fix build errors

* Updated @dcx-protocol/root to version 0.0.10
Updated @dcx-protocol/applicant to version 0.0.11
Updated @dcx-protocol/common to version 0.0.13
Updated @dcx-protocol/issuer to version 0.0.15
Package versions updated: {
  root: '0.0.10',
  applicant: '0.0.11',
  common: '0.0.13',
  issuer: '0.0.15'
}

* adding publish script

* version

* fix conflicts

* add version and publish scripts

* remove publish.ts and fix version.ts

* update version script & bump root

* remove logger mute

* bump common patch

* bump patch

* bump version major - breaking backcompat changes

* adding breaking changes across all packages

* updating applicant protocol

* fully implemented issuer and applicant - still need final createRecords methods

* update pnpm scripts

* clear working directory

* Package versions updated: { root: '3.0.0', applicant: '3.1.0', common: '2.2.0', issuer: '3.1.0' }

* update server

* Package versions updated: { root: '3.0.1', applicant: '3.1.1', common: '2.2.1', issuer: '3.1.1' }

* add server to version script and publish

* Package versions updated: {
  root: '3.0.2',
  applicant: '3.1.2',
  common: '2.2.2',
  issuer: '3.1.2',
  server: '0.1.1'
}

* resolve conflicts

* bump versions

* build-test script

* server: bump minor

* update changeset
  • Loading branch information
bnonni committed Aug 29, 2024
1 parent 34a7cf2 commit c372861
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 6 deletions.
14 changes: 14 additions & 0 deletions .changeset/clever-dots-act.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
'@dcx-protocol/applicant': major
'@dcx-protocol/common': minor
'@dcx-protocol/issuer': minor
'@dcx-protocol/server': patch
---

Bugs: applicant and issuer #126
- fixes major bug in applicant
- BUG: Attempted import error: 'utils' is not exported from '@web5/crypto' (imported as 'cryptoUtils').
- FIX: https://discord.com/channels/937858703112155166/969272658501976117/1278447654640029707
- minor changes to common
- fixes minor bug in issuer
- aligns versions in all"
8 changes: 8 additions & 0 deletions .changeset/shaggy-pigs-unite.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
'@dcx-protocol/applicant': major
'@dcx-protocol/common': major
'@dcx-protocol/issuer': major
'@dcx-protocol/server': major
---

Aligning all packages to same semver (5.0.1) due to upstream conflicts with versions
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dcx-protocol/root",
"version": "5.0.0",
"version": "5.0.1",
"description": "DCX: Decentralized Credential Exchange. DWN protocol for verifiable credential exchange.",
"type": "module",
"workspaces": [
Expand Down Expand Up @@ -83,4 +83,4 @@
"dependencies": {
"typescript": "^5.5.4"
}
}
}
2 changes: 1 addition & 1 deletion packages/applicant/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dcx-protocol/applicant",
"version": "4.0.0",
"version": "5.0.1",
"description": "DCX Applicant protocol and server",
"type": "module",
"main": "./dist/cjs/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dcx-protocol/common",
"version": "4.1.0",
"version": "5.0.1",
"description": "Common library shared by the other @dcx-protocol packages",
"type": "module",
"main": "./dist/cjs/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/issuer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dcx-protocol/issuer",
"version": "3.1.0",
"version": "5.0.1",
"description": "DCX Issuer protocol and server",
"type": "module",
"main": "./dist/cjs/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dcx-protocol/server",
"version": "3.0.1",
"version": "5.0.1",
"description": "DCX Server Implementation",
"type": "module",
"main": "./dist/cjs/index.js",
Expand Down

0 comments on commit c372861

Please sign in to comment.