diff --git a/README.md b/README.md index e8f29f611..b45a56be9 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ vi providers.json #### Then run ```bash -singbox_converter +singbox_convert ``` ## Use in python code systematically diff --git a/setup.py b/setup.py index cad218883..d0db004fb 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ def read(fname): install_requires=install_requires, package_dir={"": "src"}, entry_points={'console_scripts': [ - 'singbox_converter=singbox_converter.main:main', + 'singbox_convert=singbox_converter.main:main', ], }, package_data={ diff --git a/src/singbox_converter/__init__.py b/src/singbox_converter/__init__.py index 4e19ef642..c39e21887 100644 --- a/src/singbox_converter/__init__.py +++ b/src/singbox_converter/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.3.0' +__version__ = '0.3.1' from .dispatch import SingBoxConverter