From 853961fc87f2fb6e75b30786a1fbbbaadde66135 Mon Sep 17 00:00:00 2001 From: Maxim Andreev Date: Sat, 25 Nov 2023 11:26:12 +0300 Subject: [PATCH] v0.0.3 --- .github/workflows/release.yml | 3 ++- js/package.json | 7 +++++-- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cd5ee74..c14184f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,6 +25,7 @@ jobs: uses: actions/setup-node@v4 with: node-version: 20 + registry-url: 'https://registry.npmjs.org/' - name: Install python poetry run: | @@ -71,5 +72,5 @@ jobs: POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }} NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} run: | - poetry publish + echo poetry publish cd js && npm publish diff --git a/js/package.json b/js/package.json index 5d60440..e27f7ce 100644 --- a/js/package.json +++ b/js/package.json @@ -1,6 +1,6 @@ { "name": "evmole", - "version": "0.0.2", + "version": "0.0.3", "description": "Extracts function selectors from EVM bytecode", "main": "dist/index.cjs.js", "module": "dist/index.esm.js", @@ -16,7 +16,10 @@ "author": "Maxim Andreev ", "license": "MIT", "homepage": "https://github.com/cdump/evmole", - "repository": "github:cdump/evmole", + "repository": { + "type": "git", + "url": "git+https://github.com/cdump/evmole.git" + }, "files": [ "dist", "README.md" diff --git a/pyproject.toml b/pyproject.toml index 5d20b4c..438434d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "evmole" -version = "0.0.2" +version = "0.0.3" description = "Extracts function selectors from EVM bytecode" authors = ["Maxim Andreev "] license = "MIT"