diff --git a/python/CHANGELOG b/python/CHANGELOG index 7b6189a..e052385 100644 --- a/python/CHANGELOG +++ b/python/CHANGELOG @@ -1,3 +1,9 @@ +* 0.3.3 + - Rename cli script from deploy to publish +* 0.3.2 + - Add remove option +* 0.3.0 + - Upgrade deps * 0.1.5 - Add missing add_0x in writer cli diff --git a/python/eth_accounts_index/runnable/deploy.py b/python/eth_accounts_index/runnable/publish.py similarity index 100% rename from python/eth_accounts_index/runnable/deploy.py rename to python/eth_accounts_index/runnable/publish.py diff --git a/python/setup.cfg b/python/setup.cfg index 754f089..79fc4db 100644 --- a/python/setup.cfg +++ b/python/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = eth-accounts-index -version = 0.3.2 +version = 0.3.3 description = Accounts index evm contract tooling with permissioned writes author = Louis Holbrook author_email = dev@holbrook.no @@ -40,7 +40,7 @@ testing = [options.entry_points] console_scripts = - eth-accounts-index-deploy = eth_accounts_index.runnable.deploy:main + eth-accounts-index-publish = eth_accounts_index.runnable.publish:main eth-accounts-index-add = eth_accounts_index.runnable.add:main eth-accounts-index-writer = eth_accounts_index.runnable.writer:main eth-accounts-index-list = eth_accounts_index.runnable.list:main