sing-box-bin 1.12.10__tar.gz → 1.12.12__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (23) hide show
  1. {sing_box_bin-1.12.10 → sing_box_bin-1.12.12}/PKG-INFO +5 -2
  2. {sing_box_bin-1.12.10 → sing_box_bin-1.12.12}/README.md +4 -1
  3. {sing_box_bin-1.12.10 → sing_box_bin-1.12.12}/pyproject.toml +1 -1
  4. {sing_box_bin-1.12.10 → sing_box_bin-1.12.12}/src/sing_box_bin/__init__.py +1 -1
  5. {sing_box_bin-1.12.10 → sing_box_bin-1.12.12}/src/sing_box_bin/bin/sing-box-linux-amd64 +0 -0
  6. {sing_box_bin-1.12.10 → sing_box_bin-1.12.12}/src/sing_box_bin/bin/sing-box-windows-amd64.exe +0 -0
  7. {sing_box_bin-1.12.10 → sing_box_bin-1.12.12}/.github/dependabot.yml +0 -0
  8. {sing_box_bin-1.12.10 → sing_box_bin-1.12.12}/.github/workflows/build.yml +0 -0
  9. {sing_box_bin-1.12.10 → sing_box_bin-1.12.12}/.github/workflows/main.yml +0 -0
  10. {sing_box_bin-1.12.10 → sing_box_bin-1.12.12}/.gitignore +0 -0
  11. {sing_box_bin-1.12.10 → sing_box_bin-1.12.12}/.pre-commit-config.yaml +0 -0
  12. {sing_box_bin-1.12.10 → sing_box_bin-1.12.12}/.vscode/settings.json +0 -0
  13. {sing_box_bin-1.12.10 → sing_box_bin-1.12.12}/LICENSE +0 -0
  14. {sing_box_bin-1.12.10 → sing_box_bin-1.12.12}/assets/gif/ruff.gif +0 -0
  15. {sing_box_bin-1.12.10 → sing_box_bin-1.12.12}/scripts/build.sh +0 -0
  16. {sing_box_bin-1.12.10 → sing_box_bin-1.12.12}/scripts/bump.sh +0 -0
  17. {sing_box_bin-1.12.10 → sing_box_bin-1.12.12}/scripts/format.sh +0 -0
  18. {sing_box_bin-1.12.10 → sing_box_bin-1.12.12}/scripts/lint.sh +0 -0
  19. {sing_box_bin-1.12.10 → sing_box_bin-1.12.12}/scripts/pre-commit.sh +0 -0
  20. {sing_box_bin-1.12.10 → sing_box_bin-1.12.12}/scripts/test.sh +0 -0
  21. {sing_box_bin-1.12.10 → sing_box_bin-1.12.12}/src/sing_box_bin/py.typed +0 -0
  22. {sing_box_bin-1.12.10 → sing_box_bin-1.12.12}/tests/test_main.py +0 -0
  23. {sing_box_bin-1.12.10 → sing_box_bin-1.12.12}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sing-box-bin
3
- Version: 1.12.10
3
+ Version: 1.12.12
4
4
  Summary: python template package
5
5
  Project-URL: Homepage, https://github.com/aittcuszz/sing-box-bin
6
6
  Project-URL: Issues, https://github.com/atticuszeller/sing-box-bin/issues
@@ -49,6 +49,9 @@ A Python wrapper for sing-box binary releases
49
49
 
50
50
  ```bash
51
51
  .\scripts\build.sh "vx.y.z"
52
+ git add src/sing_box_bin/bin/
53
+ git commit -m "feat: update sing-box binary to version vx.y.z"
54
+ uv tool install bump-my-version
52
55
  bump-my-version bump --new-version "x.y.z"
53
56
  git push origin main --tags
54
57
  ```
@@ -65,5 +68,5 @@ uv add sing-box-bin
65
68
  from sing_box_bin import get_bin_path
66
69
 
67
70
  >>> get_bin_path()
68
- >>> ./.sing-box-bin/ sing-box-windows-amd64.exe
71
+ >>> Path(./sing-box-bin/bin/sing-box-windows-amd64.exe)
69
72
  ```
@@ -7,6 +7,9 @@ A Python wrapper for sing-box binary releases
7
7
 
8
8
  ```bash
9
9
  .\scripts\build.sh "vx.y.z"
10
+ git add src/sing_box_bin/bin/
11
+ git commit -m "feat: update sing-box binary to version vx.y.z"
12
+ uv tool install bump-my-version
10
13
  bump-my-version bump --new-version "x.y.z"
11
14
  git push origin main --tags
12
15
  ```
@@ -23,5 +26,5 @@ uv add sing-box-bin
23
26
  from sing_box_bin import get_bin_path
24
27
 
25
28
  >>> get_bin_path()
26
- >>> ./.sing-box-bin/ sing-box-windows-amd64.exe
29
+ >>> Path(./sing-box-bin/bin/sing-box-windows-amd64.exe)
27
30
  ```
@@ -204,7 +204,7 @@ topo_order = false
204
204
  sort_commits = "oldest"
205
205
 
206
206
  [tool.bumpversion]
207
- current_version = "1.12.10"
207
+ current_version = "1.12.12"
208
208
  parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
209
209
  serialize = ["{major}.{minor}.{patch}"]
210
210
  search = "{current_version}"
@@ -4,7 +4,7 @@ from pathlib import Path
4
4
 
5
5
  __all__ = ["get_bin_path"]
6
6
 
7
- __version__ = "1.12.10"
7
+ __version__ = "1.12.12"
8
8
 
9
9
 
10
10
  def get_bin_path() -> Path:
File without changes
File without changes