diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 53e64fb..240f668 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -1,8 +1,9 @@ name: Release on: - release: - types: [released] + push: + tags: + - 'v*' jobs: test: diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 1638f41..3072ed4 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -16,7 +16,8 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - python-version: ["3.9", "3.10", "3.11"] + # * Don't need to run on all versions as hatch matrix will do the job + python-version: ["3.9"] steps: - uses: actions/checkout@v4 - name: Set up Python diff --git a/CHANGELOG.md b/CHANGELOG.md index cbb8b8f..ff02ba1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. -## \[0.0.3\] - 2024-07-12 +## \[0.0.3\] - 2024-07-13 ### ๐Ÿš€ Features @@ -10,12 +10,24 @@ All notable changes to this project will be documented in this file. - Implemented encode_calldata, decode_calldata functions to encode calldata for a given function signature and arguments which will use selectors & updated old encode & decode options to abi_encode & abi_decode respectively - Added option to pass network and provider using ape's native network parsing. added docs workflows +### ๐Ÿ› Bug Fixes + +- Fixed deps missing the test workflow +- Missing python version & updated codecov workflow +- Typo fixed in utils.py file +- Typo fixed in test.yml workflow + ### ๐Ÿ“š Documentation - Changelog added - Changelogs updated - Updated demo.gif - Readme updated +- Changelog updated + +### ๐Ÿงช Testing + +- Added tests ### โš™๏ธ Miscellaneous Tasks @@ -28,5 +40,7 @@ All notable changes to this project will be documented in this file. - Readme updated & cli changed - Added ape, ethpm_types as deps - Renamed cli tool to ape_utils & added method to just print the encoded signature +- Workflows updated +- Deps added for commitizen