Skip to content

Commit

Permalink
v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
cdump committed Nov 25, 2023
1 parent 7ef048e commit 853961f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down Expand Up @@ -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
7 changes: 5 additions & 2 deletions js/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -16,7 +16,10 @@
"author": "Maxim Andreev <[email protected]>",
"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"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 853961f

Please sign in to comment.