Skip to content

Commit e7d0f66

Browse files
committed
feat: bump version to 0.2.1
1 parent c6e74b5 commit e7d0f66

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

singbox2proxy/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
from .base import SingBoxCore, SingBoxProxy, enable_logging, disable_logging, default_core
1+
from .base import SingBoxCore, SingBoxProxy, SingBoxClient, enable_logging, disable_logging, default_core
22

3-
VERSION = "0.1.10"
3+
VERSION = "0.2.1"
44

55
print(f"singbox2proxy version {VERSION}")
66

7-
__all__ = ["SingBoxCore", "SingBoxProxy", "VERSION", "enable_logging", "disable_logging", "default_core"]
7+
__all__ = ["SingBoxCore", "SingBoxProxy", "SingBoxClient", "VERSION", "enable_logging", "disable_logging", "default_core"]

singbox2proxy/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def _save_config(config, path):
131131
except Exception as e:
132132
print(f"Proxy test failed: {str(e)}")
133133
sys.exit(0)
134-
134+
135135
print("\nProxy is running. Press Ctrl+C to stop.")
136136

137137
# Keep the script running
@@ -152,7 +152,7 @@ def _save_config(config, path):
152152
except Exception:
153153
pass
154154
print("Proxy stopped.")
155-
155+
156156
sys.exit(1)
157157

158158

0 commit comments

Comments
 (0)