sing-box-bin 1.12.13__tar.gz → 1.12.15__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.
- {sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/.github/workflows/build.yml +5 -4
- {sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/PKG-INFO +2 -2
- {sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/README.md +1 -1
- {sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/pyproject.toml +1 -1
- {sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/src/sing_box_bin/__init__.py +1 -1
- {sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/src/sing_box_bin/bin/sing-box-linux-amd64 +0 -0
- {sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/src/sing_box_bin/bin/sing-box-windows-amd64.exe +0 -0
- {sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/.github/dependabot.yml +0 -0
- {sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/.github/workflows/main.yml +0 -0
- {sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/.gitignore +0 -0
- {sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/.pre-commit-config.yaml +0 -0
- {sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/.vscode/settings.json +0 -0
- {sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/LICENSE +0 -0
- {sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/assets/gif/ruff.gif +0 -0
- {sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/scripts/build.sh +0 -0
- {sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/scripts/bump.sh +0 -0
- {sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/scripts/format.sh +0 -0
- {sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/scripts/lint.sh +0 -0
- {sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/scripts/pre-commit.sh +0 -0
- {sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/scripts/test.sh +0 -0
- {sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/src/sing_box_bin/py.typed +0 -0
- {sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/tests/test_main.py +0 -0
- {sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/uv.lock +0 -0
|
@@ -55,6 +55,9 @@ jobs:
|
|
|
55
55
|
runs-on: ubuntu-latest
|
|
56
56
|
steps:
|
|
57
57
|
- uses: actions/checkout@v5
|
|
58
|
+
with:
|
|
59
|
+
fetch-depth: 0
|
|
60
|
+
token: ${{ secrets. ATTICUS_PAT }}
|
|
58
61
|
|
|
59
62
|
- name: Install uv
|
|
60
63
|
uses: astral-sh/setup-uv@v6
|
|
@@ -79,14 +82,12 @@ jobs:
|
|
|
79
82
|
git config --local user.email "action@github.com"
|
|
80
83
|
git config --local user.name "GitHub Action"
|
|
81
84
|
git add src/sing_box_bin/bin/
|
|
82
|
-
git
|
|
83
|
-
|
|
84
|
-
git commit -m "feat: update sing-box binary to version ${{ needs.check.outputs.version }}"
|
|
85
|
+
git diff --staged --quiet || git commit -m "feat: update sing-box binary to version ${{ needs.check.outputs.version }}"
|
|
85
86
|
|
|
86
87
|
- name: Bump version
|
|
87
88
|
run: |
|
|
88
89
|
uv tool install bump-my-version
|
|
89
|
-
uv run bump-my-version bump --new-version "${{ needs.check.outputs.clean_version }}"
|
|
90
|
+
uv run bump-my-version bump --new-version "${{ needs.check.outputs.clean_version }}" --commit --tag
|
|
90
91
|
|
|
91
92
|
- name: Push Changes
|
|
92
93
|
run: git push origin main --tags
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sing-box-bin
|
|
3
|
-
Version: 1.12.
|
|
3
|
+
Version: 1.12.15
|
|
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
|
|
@@ -52,7 +52,7 @@ A Python wrapper for sing-box binary releases
|
|
|
52
52
|
git add src/sing_box_bin/bin/
|
|
53
53
|
git commit -m "feat: update sing-box binary to version vx.y.z"
|
|
54
54
|
uv tool install bump-my-version
|
|
55
|
-
bump-my-version bump --new-version
|
|
55
|
+
bump-my-version bump --new-version vx.y.z --commit --tag
|
|
56
56
|
git push origin main --tags
|
|
57
57
|
```
|
|
58
58
|
|
|
@@ -10,7 +10,7 @@ A Python wrapper for sing-box binary releases
|
|
|
10
10
|
git add src/sing_box_bin/bin/
|
|
11
11
|
git commit -m "feat: update sing-box binary to version vx.y.z"
|
|
12
12
|
uv tool install bump-my-version
|
|
13
|
-
bump-my-version bump --new-version
|
|
13
|
+
bump-my-version bump --new-version vx.y.z --commit --tag
|
|
14
14
|
git push origin main --tags
|
|
15
15
|
```
|
|
16
16
|
|
|
@@ -204,7 +204,7 @@ topo_order = false
|
|
|
204
204
|
sort_commits = "oldest"
|
|
205
205
|
|
|
206
206
|
[tool.bumpversion]
|
|
207
|
-
current_version = "1.12.
|
|
207
|
+
current_version = "1.12.15"
|
|
208
208
|
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
|
|
209
209
|
serialize = ["{major}.{minor}.{patch}"]
|
|
210
210
|
search = "{current_version}"
|
|
index 0bd583f..fac6e55
|
|
|
Binary file
|
{sing_box_bin-1.12.13 → sing_box_bin-1.12.15}/src/sing_box_bin/bin/sing-box-windows-amd64.exe
RENAMED
|
index 1f35801..e2155b7
|
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|