Skip to content

Commit 43a9878

Browse files
committed
chore(release): publish
- @ethereum-sourcify/[email protected] - @ethereum-sourcify/[email protected] - @ethereum-sourcify/[email protected] - @ethereum-sourcify/[email protected] - [email protected] - [email protected] - [email protected]
1 parent 46406fc commit 43a9878

File tree

8 files changed

+32
-32
lines changed

8 files changed

+32
-32
lines changed

package-lock.json

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/bytecode-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ethereum-sourcify/bytecode-utils",
3-
"version": "1.3.10",
3+
"version": "1.3.11",
44
"description": "Decode the CBOR encoded data at the end of an Ethereum contract's bytecode.",
55
"main": "build/main/index.js",
66
"typings": "build/main/index.d.ts",

packages/compilers-types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ethereum-sourcify/compilers-types",
3-
"version": "1.0.5",
3+
"version": "1.0.6",
44
"description": "TypeScript types for Sourcify compilers",
55
"main": "build/main/index.js",
66
"module": "build/module/index.js",

packages/compilers/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ethereum-sourcify/compilers",
3-
"version": "1.0.7",
3+
"version": "1.0.8",
44
"description": "Wrapper around multiple compilers to download the right version and invoke the compilation with a common interface.",
55
"main": "build/main/index.js",
66
"typings": "build/main/index.d.ts",
@@ -49,7 +49,7 @@
4949
"solc": "0.8.30"
5050
},
5151
"devDependencies": {
52-
"@ethereum-sourcify/compilers-types": "^1.0.5",
52+
"@ethereum-sourcify/compilers-types": "^1.0.6",
5353
"@types/chai": "4.3.20",
5454
"@types/mocha": "10.0.10",
5555
"@types/node": "22.17.0",

packages/lib-sourcify/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ethereum-sourcify/lib-sourcify",
3-
"version": "2.2.0",
3+
"version": "2.2.1",
44
"description": "Library for Sourcify's contract verification methods, contract validation, types, and interfaces.",
55
"main": "build/main/index.js",
66
"typings": "build/main/index.d.ts",
@@ -34,7 +34,7 @@
3434
"node": ">=22.0.0"
3535
},
3636
"dependencies": {
37-
"@ethereum-sourcify/bytecode-utils": "^1.3.10",
37+
"@ethereum-sourcify/bytecode-utils": "^1.3.11",
3838
"@ethereumjs/blockchain": "7.3.0",
3939
"@ethereumjs/common": "4.4.0",
4040
"@ethereumjs/evm": "3.1.1",
@@ -52,8 +52,8 @@
5252
"semver": "7.7.2"
5353
},
5454
"devDependencies": {
55-
"@ethereum-sourcify/compilers": "^1.0.7",
56-
"@ethereum-sourcify/compilers-types": "^1.0.5",
55+
"@ethereum-sourcify/compilers": "^1.0.8",
56+
"@ethereum-sourcify/compilers-types": "^1.0.6",
5757
"@types/chai": "4.3.20",
5858
"@types/chai-as-promised": "7.1.8",
5959
"@types/debug": "4.1.12",

services/database/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sourcify-database",
3-
"version": "2.6.0",
3+
"version": "2.7.0",
44
"private": true,
55
"description": "The Sourcify database",
66
"main": "index.js",

services/monitor/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sourcify-monitor",
3-
"version": "1.3.16",
3+
"version": "1.3.17",
44
"private": true,
55
"description": "A monitoring service to listen to chains and send detected new contracts to a Sourcify server",
66
"main": "index.js",
@@ -37,8 +37,8 @@
3737
},
3838
"homepage": "https://github.com/ethereum/sourcify#readme",
3939
"dependencies": {
40-
"@ethereum-sourcify/bytecode-utils": "^1.3.10",
41-
"@ethereum-sourcify/lib-sourcify": "^2.2.0",
40+
"@ethereum-sourcify/bytecode-utils": "^1.3.11",
41+
"@ethereum-sourcify/lib-sourcify": "^2.2.1",
4242
"chalk": "4.1.2",
4343
"commander": "12.1.0",
4444
"dotenv": "16.6.1",

services/server/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sourcify-server",
3-
"version": "3.3.0",
3+
"version": "3.3.1",
44
"description": "Solidity metadata-based re-compilation and source verification tool",
55
"main": "dist/server/server.js",
66
"types": "dist/server/server.d.ts",
@@ -50,9 +50,9 @@
5050
"homepage": "https://github.com/ethereum/sourcify#readme",
5151
"dependencies": {
5252
"@aws-sdk/client-s3": "3.859.0",
53-
"@ethereum-sourcify/bytecode-utils": "^1.3.10",
54-
"@ethereum-sourcify/compilers": "^1.0.7",
55-
"@ethereum-sourcify/lib-sourcify": "^2.2.0",
53+
"@ethereum-sourcify/bytecode-utils": "^1.3.11",
54+
"@ethereum-sourcify/compilers": "^1.0.8",
55+
"@ethereum-sourcify/lib-sourcify": "^2.2.1",
5656
"@google-cloud/cloud-sql-connector": "1.8.2",
5757
"@shazow/whatsabi": "0.22.2",
5858
"@solidity-parser/parser": "0.20.2",

0 commit comments

Comments
 (0)