Skip to content

Commit c3f39dd

Browse files
committed
release: version 11.0.3 πŸš€
1 parent 4acaa90 commit c3f39dd

File tree

11 files changed

+16
-8
lines changed

11 files changed

+16
-8
lines changed

β€ŽHISTORY.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Changelog
22

33

4+
## v11.0.3 (2025-07-11)
5+
6+
#### New
7+
8+
* Add singbox support again, improve xray usage.
9+
10+
11+
412
## v11.0.1 (2025-07-10)
513

614
#### Other

β€ŽMakefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ ifeq ($(TAG),)
105105
@echo "WARNING: This operation will create s version tag and push to github"
106106
@read -p "Version? (provide the next x.y.z semver) : " TAG
107107
endif
108-
@( git checkout beta && git pull && git merge dev ) || ( git checkout dev; echo "error in merging to beta branch"; exit 1 )
108+
@( git checkout beta && git pull && git rebase dev ) || ( git checkout dev; echo "error in merging to beta branch"; exit 1 )
109109
@echo "$${TAG}" > hiddifypanel/VERSION
110110
@sed -i "/^version =/c version = '$${TAG}'" pyproject.toml
111111
@sed -i "/^__version__ =/c __version__ = '$${TAG}'" hiddifypanel/VERSION.py
@@ -120,10 +120,10 @@ endif
120120
@echo "creating git tag : $${TAG}"
121121
@git tag v$${TAG}
122122
@git push -u origin HEAD --tags
123-
@if ! echo "$$VERSION_STR" | grep -q "b"; then \
124-
git checkout main && git merge beta && git push \
123+
@if ! echo "$${VERSION_STR}" | grep -q "b"; then \
124+
git checkout main && git rebase dev && git push \
125125
fi
126-
@git checkout dev && git merge beta && git push
126+
@git checkout dev
127127
@echo "Github Actions will detect the new tag and release the new version."
128128

129129
.PHONY: docs

β€Žhiddifypanel/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
11.0.2
1+
11.0.3

β€Žhiddifypanel/VERSION.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# import importlib.metadata
22
from datetime import datetime
33

4-
__version__ = '11.0.2'
5-
__release_time__= datetime.strptime('2025-07-11T02:15:39','%Y-%m-%dT%H:%M:%S')
4+
__version__ = '11.0.3'
5+
__release_time__= datetime.strptime('2025-07-11T17:41:00','%Y-%m-%dT%H:%M:%S')
66
is_released_version = False
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
Β (0)