Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: version packages (beta) #615

Merged
merged 1 commit into from
Apr 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,9 @@
"@blockchain-lab-um/masca": "1.2.2",
"@blockchain-lab-um/masca-types": "1.3.2"
},
"changesets": []
}
"changesets": [
"five-poets-yell",
"rich-pandas-add",
"young-forks-jog"
]
}
8 changes: 8 additions & 0 deletions packages/dapp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @blockchain-lab-um/dapp

## 1.3.2-beta.0

### Patch Changes

- [#609](https://github.com/blockchain-lab-um/masca/pull/609) [`5cb712a`](https://github.com/blockchain-lab-um/masca/commit/5cb712ad40156207f41c3f2fd863f0ad0472791a) Thanks [@pseudobun](https://github.com/pseudobun)! - Adds reclaim option for campaigns.

- [#614](https://github.com/blockchain-lab-um/masca/pull/614) [`fc1f796`](https://github.com/blockchain-lab-um/masca/commit/fc1f796ad66b5dbceccd0d96f64e2d98cfca71f0) Thanks [@tadejpodrekar](https://github.com/tadejpodrekar)! - Adds campaign issue checks.

## 1.3.1

### Patch Changes
Expand Down
28 changes: 21 additions & 7 deletions packages/dapp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blockchain-lab-um/dapp",
"version": "1.3.1",
"version": "1.3.2-beta.0",
"private": true,
"license": "(Apache-2.0 AND MIT)",
"type": "commonjs",
Expand Down Expand Up @@ -97,7 +97,9 @@
},
"nx": {
"namedInputs": {
"default": ["{projectRoot}/**/*"],
"default": [
"{projectRoot}/**/*"
],
"production": [
"default",
"!{projectRoot}/sonar-project.properties",
Expand All @@ -109,13 +111,25 @@
},
"targets": {
"build": {
"inputs": ["production", "^production"],
"dependsOn": ["^build"],
"outputs": ["{projectRoot}/.next"]
"inputs": [
"production",
"^production"
],
"dependsOn": [
"^build"
],
"outputs": [
"{projectRoot}/.next"
]
},
"start": {
"inputs": ["production", "^production"],
"dependsOn": ["build"],
"inputs": [
"production",
"^production"
],
"dependsOn": [
"build"
],
"outputs": []
}
}
Expand Down
6 changes: 6 additions & 0 deletions packages/snap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 1.2.3-beta.0

### Patch Changes

- [#625](https://github.com/blockchain-lab-um/masca/pull/625) [`f29e494`](https://github.com/blockchain-lab-um/masca/commit/f29e494a8cb6a9de30682a59feb6adee7e15b1e7) Thanks [@martines3000](https://github.com/martines3000)! - Adjust nbf and iat for idtoken signing

## 1.2.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/snap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blockchain-lab-um/masca",
"version": "1.2.2",
"version": "1.2.3-beta.0",
"description": "Snap for managing VCs and VPs in MetaMask",
"keywords": [
"MetaMask",
Expand Down
4 changes: 2 additions & 2 deletions packages/snap/snap.manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.2.2",
"version": "1.2.3-beta.0",
"description": "Snap for managing VCs and VPs in MetaMask",
"proposedName": "Masca",
"repository": {
Expand All @@ -26,7 +26,7 @@
"./files/circuits/credentialAtomicQuerySigV2/circuit_final.zkey",
"./files/circuits/credentialAtomicQuerySigV2/verification_key.json"
],
"shasum": "BxBaqzALa1v9aL1XW5mcXd/ppZOisCN+LmrEjpifQ4E="
"shasum": "p2I0ddoVhfR/VsWnSWjrs45ADC2xc5Tyl1lOA84R2bI="
},
"initialPermissions": {
"endowment:ethereum-provider": {},
Expand Down
Loading