Skip to content

Commit

Permalink
chore: release main (#199)
Browse files Browse the repository at this point in the history
* chore: release main

* chore: update chg log

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: stanleyyuen <[email protected]>
  • Loading branch information
github-actions[bot] and stanleyyconsensys authored Mar 7, 2024
1 parent 4dfac9c commit ad55a78
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"packages/starknet-snap": "2.4.0",
"packages/wallet-ui": "1.19.0"
"packages/starknet-snap": "2.5.0",
"packages/wallet-ui": "1.20.0"
}
10 changes: 10 additions & 0 deletions packages/starknet-snap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# Changelog


## [2.5.0](https://github.com/Consensys/starknet-snap/compare/starknet-snap-v2.4.0...starknet-snap-v2.5.0) (2024-03-05)


### Features

* add strk token ([#204](https://github.com/Consensys/starknet-snap/issues/204)) ([86f3a82](https://github.com/Consensys/starknet-snap/commit/86f3a82dce3389be3690a34e62e87ea655af7380))
* display Stark name in Sidebar ([#184](https://github.com/Consensys/starknet-snap/issues/184)) ([60f37da](https://github.com/Consensys/starknet-snap/commit/60f37da767504382a4a93a5ce944e6119bd6e304))
* implement snap homepage screen ([#207](https://github.com/Consensys/starknet-snap/issues/207)) ([675647d](https://github.com/Consensys/starknet-snap/commit/675647d9d77ba512f87a6a1d8291941bb5c31038))


## [2.4.0](https://github.com/Consensys/starknet-snap/compare/starknet-snap-v2.3.0...starknet-snap-v2.4.0) (2023-12-19)


Expand Down
28 changes: 23 additions & 5 deletions packages/starknet-snap/openrpc/starknet_snap_api_openrpc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"openrpc": "1.0.0-rc1",
"info": {
"version": "2.4.0",
"version": "2.5.0",
"title": "Starknet MetaMask Snap API",
"license": {}
},
Expand Down Expand Up @@ -1323,7 +1323,12 @@
"properties": {
"type": {
"type": "string",
"enum": ["DECLARE", "DEPLOY", "DEPLOY_ACCOUNT", "INVOKE_FUNCTION"]
"enum": [
"DECLARE",
"DEPLOY",
"DEPLOY_ACCOUNT",
"INVOKE_FUNCTION"
]
},
"payload": {
"$ref": "#/components/schemas/INVOCATION_PAYLOAD"
Expand Down Expand Up @@ -1409,17 +1414,30 @@
},
"TXN_STATUS": {
"type": "string",
"enum": ["UNKNOWN", "RECEIVED", "PENDING", "ACCEPTED_ON_L2", "ACCEPTED_ON_L1", "REJECTED"],
"enum": [
"UNKNOWN",
"RECEIVED",
"PENDING",
"ACCEPTED_ON_L2",
"ACCEPTED_ON_L1",
"REJECTED"
],
"description": "The status of the transaction. May be unknown in case node is not aware of it"
},
"VOYAGER_TXN_TYPE": {
"type": "string",
"enum": ["invoke", "deploy"],
"enum": [
"invoke",
"deploy"
],
"description": "The txn type of the transaction from Voyager. May not be a full list here and subject to change"
},
"VOYAGER_TXN_STATUS": {
"type": "string",
"enum": ["Accepted on L2", "Accepted on L1"],
"enum": [
"Accepted on L2",
"Accepted on L1"
],
"description": "The status of the transaction. May be unknown in case node is not aware of it"
},
"TYPED_DATA_SIGNATURE": {
Expand Down
2 changes: 1 addition & 1 deletion packages/starknet-snap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@consensys/starknet-snap",
"version": "2.4.0",
"version": "2.5.0",
"license": "(Apache-2.0 OR MIT)",
"main": "src/index.ts",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/starknet-snap/snap.manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.4.0",
"version": "2.5.0",
"description": "Manage Starknet accounts and assets with MetaMask.",
"proposedName": "Starknet",
"repository": {
Expand Down
7 changes: 7 additions & 0 deletions packages/wallet-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.


## [1.20.0](https://github.com/Consensys/starknet-snap/compare/wallet-ui-v1.19.0...wallet-ui-v1.20.0) (2024-03-05)


### Features

* display Stark name in Sidebar ([#184](https://github.com/Consensys/starknet-snap/issues/184)) ([60f37da](https://github.com/Consensys/starknet-snap/commit/60f37da767504382a4a93a5ce944e6119bd6e304))

## [1.19.0](https://github.com/Consensys/starknet-snap/compare/wallet-ui-v1.18.0...wallet-ui-v1.19.0) (2023-12-19)


Expand Down
2 changes: 1 addition & 1 deletion packages/wallet-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wallet-ui",
"version": "1.19.0",
"version": "1.20.0",
"private": true,
"license": "(Apache-2.0 OR MIT)",
"homepage": "/starknet",
Expand Down

0 comments on commit ad55a78

Please sign in to comment.